@php $subtotal = 0; $totalItems = 0; @endphp @foreach($cartItems as $cartItem) @php $subtotal += ($cartItem->carp_unitprice * $cartItem->carp_qt); $totalItems += $cartItem->carp_qt; @endphp @endforeach @if($totalItems > 0) Total Itens: {{ $totalItems }} itens Subtotal: {{ number_format($subtotal, 2) }} € @endif