@for ($i = 1; $i < 8; $i++)
@if (count($meals)) @php $removeBtn = asset('admin/images/close.png'); @endphp @foreach ($meals as $meal)
{{ $meal->name }}
Loading...
+
@if (count($foodItems[$i]) > 0)
@foreach ($foodItems[$i][$meal->id] as $foodItem) @endforeach
{{ $foodItem['name'] }} ({{(int)$foodItem['quantity']}})
{{ $foodItem['serving_size'] }} {{ $foodItem['serving_unit'] }}
P {{ number_format($foodItem['protein'], 1) }}g    C {{ number_format($foodItem['total_carbohydrates'], 1) }}g    F {{ number_format($foodItem['total_fat'], 1) }}g   
@endif
@endforeach @endif
@endfor