@extends('admin.layouts.app')
@section('content')
| Facture | N° | Client | Statut | Livraison | Total | Date | |
|---|---|---|---|---|---|---|---|
| @if(in_array($order->status, ['pending', 'cancelled'])) @endif | {{ $order->invoice_number ?? '-' }} | {{ $order->number }} |
{{ $order->billing_first_name }} {{ $order->billing_last_name }}
{{ $order->billing_email }}
|
|
{{ $order->shipping_method ?? '-' }} | {{ number_format($order->total, 2, ',', ' ') }} € | {{ $order->created_at->format('d/m/Y') }} |
| Aucune commande trouvée. | |||||||