@php $subtotal = 0; @endphp
@forelse($cartItems as $cartItem)
@php
$itemTotal = $cartItem->carp_unitprice * $cartItem->carp_qt;
$subtotal += $itemTotal;
@endphp
{{ $cartItem->pack->pro_description_pt ?? 'Pack' }}
— {{ $cartItem->typeMeal->typ_description_pt ?? '' }}
@if($cartItem->items->isNotEmpty())
@foreach($cartItem->items as $dishItem)
{{ $dishItem->cpi_qt }}x {{ $dishItem->dish->dsh_name_pt }}
@endforeach
@endif
|
|
{{ number_format($cartItem->carp_unitprice, 2) }} € |
{{ number_format($itemTotal, 2) }} € |
|
@empty
| Carrinho vazio |
@endforelse