Mon Panier

{{ $itemCount }} article{{ $itemCount > 1 ? 's' : '' }} dans votre panier

@if(count($items) > 0)

Articles

@foreach($items as $item)
@if(!empty($item['image'])) {{ $item['name'] ?? 'Produit' }} @else
@endif
{{ $item['name'] ?? 'Produit #' . $item['id'] }}

{{ number_format($item['price'], 0, ',', ' ') }} FCFA

{{ $item['quantity'] }}

{{ number_format($item['price'] * $item['quantity'], 0, ',', ' ') }} FCFA

@endforeach

Recapitulatif

Sous-total ({{ $itemCount }} article{{ $itemCount > 1 ? 's' : '' }}) {{ number_format($total, 0, ',', ' ') }} FCFA
Livraison A calculer
Total {{ number_format($total, 0, ',', ' ') }} FCFA
Paiement securise
Achat protege
@else

Votre panier est vide

Vous n'avez pas encore ajoute d'articles a votre panier. Parcourez nos produits et trouvez ce qui vous convient.

Decouvrir nos produits
@endif