@extends('layouts.app') @section('title', 'Panier - JOLI Matelas') @section('content')
@include('partials.page-hero', [ 'title' => 'Mon panier', 'breadcrumbs' => [ ['label' => 'Accueil', 'href' => route('home')], ['label' => 'Panier'] ] ])
@if(empty($cart['items']))

Votre panier est vide

Découvrez nos produits de qualité

Voir nos produits
@else
@foreach($cart['items'] as $item)
@if($item['product']->thumbnail) {{ $item['product']->name }} @else
@endif

{{ $item['product']->name }}

Taille : {{ $item['variant']->size }}

{{ number_format($item['variant']->price, 0, ',', ' ') }} {{ config('shop.currency_symbol') }}

{{ $item['quantity'] }}
{{ number_format($item['subtotal'], 0, ',', ' ') }} {{ config('shop.currency_symbol') }}
@endforeach

Récapitulatif

Articles ({{ $cart['total_items'] }}) {{ number_format($cart['total_price'], 0, ',', ' ') }} {{ config('shop.currency_symbol') }}
Livraison Gratuite
Total {{ number_format($cart['total_price'], 0, ',', ' ') }} {{ config('shop.currency_symbol') }}
Livraison gratuite
Paiement à la livraison
Qualité garantie
@endif
@endsection