@include('partials.topbar')

Mes paniers

@if($carts->isEmpty())

Vous n’avez encore aucun panier enregistré.

@else @foreach($carts as $cart) @endforeach
ID Créé le Statut Code client Référence Nb lignes Actions
#{{ $cart->id }} {{ $cart->created_at?->format('d/m/Y H:i') }} @php $status = $cart->status ?? 'draft'; @endphp @if($status === 'sent') Envoyé @else Brouillon @endif {{ $cart->customer_number ?? '-' }} {{ $cart->order_reference ?? '-' }} {{ $cart->items_count }} Ouvrir {{-- plus tard : Dupliquer, Exporter, etc. --}}
@endif