@foreach ($cart->items as $item)
{{ $item->product?->title }} × {{ $item->quantity }}
${{ number_format($item->lineTotal(), 2) }}
@endforeach
Subtotal${{ number_format($cart->subtotal(), 2) }}
Shipping
! $freeShippingApplies,
'rounded-full bg-emerald-100 px-2.5 py-1 text-xs font-bold uppercase tracking-wide text-emerald-800' => $freeShippingApplies,
])>{{ $freeShippingApplies ? 'Free shipping' : 'Calculated at checkout' }}
Minimum product subtotal: ${{ number_format($minimumOrder, 2) }}.