@if(empty($items))

Votre panier est vide

Parcourir la boutique
@else
@foreach($items as $item) @php $productUrl = $item['product']?->url() ?? '#'; $unitPrice = $item['price'] + ($item['addon_price_per_unit'] ?? 0); $lineTotal = $unitPrice * $item['quantity'] + ($item['addon_price_flat'] ?? 0); @endphp
@if(!empty($item['image'])) {{ $item['name'] }} @else
@endif

{{ $item['name'] }}

{{ $item['quantity'] }} × {{ number_format($unitPrice, 2, ',', ' ') }} €

{{ number_format($lineTotal, 2, ',', ' ') }} €

@endforeach
Sous-total {{ number_format($subtotal, 2, ',', ' ') }} €
Voir le panier
@endif