Référence : {{ $sale->reference }}
Date : {{ $sale->created_at->format('d/m/Y H:i') }}
Montant total : {{ number_format($sale->montant_total, 2) }} FCFA
Montant payé : {{ number_format($sale->montant_paiement, 2) }} FCFA
Statut : {{ ucfirst($sale->payment_status) }}
| # | Produit | Quantité | Prix Unitaire | Total |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $detail->product->name }} | {{ $detail->quantity }} | {{ number_format($detail->price, 2) }} FCFA | {{ number_format($detail->quantity * $detail->price, 2) }} FCFA |
Total Payable : {{ number_format($sale->montant_total, 2) }} FCFA