Mon panier

@if(session('warnings'))
    @foreach(session('warnings') as $warning)
  • {{ $warning }}
  • @endforeach
@endif @if(empty($items))

Votre panier est vide

Continuer mes achats
@else
{{-- Articles --}}
@foreach($items as $key => $item) @include('cart.partials.item', ['item' => $item]) @endforeach
{{-- Récap commande --}}

Récapitulatif

Sous-total {{ number_format($subtotal, 2, ',', ' ') }} €
Livraison Calculée à l'étape suivante
Total {{ number_format($subtotal, 2, ',', ' ') }} €
Commander Continuer mes achats
@endif {{-- Suggestions --}} @if($suggestions->isNotEmpty()) @endif