Mon compte /

Mes commandes

@if($orders->isEmpty())

Vous n'avez pas encore passé de commande.

Découvrir la boutique
@else
@foreach($orders as $order) @endforeach
Commande Date Statut Total
{{ $order->number }} {{ $order->created_at->format('d/m/Y') }} @include('account.partials.order-status', ['status' => $order->status]) {{ number_format($order->total, 2, ',', ' ') }} € Détails
{{ $orders->links() }} @endif