{{ __('Commande #') }}{{ $order->id }}

Statut

{{ $order->status }}

Total

{{ number_format($order->total_amount_xaf, 0, ',', ' ') }} XAF

Facture

{{ $order->invoice?->invoice_number }}

@if($order->status !== \App\Models\Order::STATUS_PAID)
@csrf
@endif

Articles

    @foreach($order->items as $item)
  • {{ $item->description }} - {{ number_format($item->amount_xaf, 0, ',', ' ') }} XAF
  • @endforeach
@if($order->invoice) @endif