Date : {{ \Carbon\Carbon::parse($achat->date)->format('d/m/Y') }}
Référence : {{ $achat->reference }}
{{ $achat->fournisseur->fullname ?? '-' }}
{{ $achat->fournisseur->phone ?? '' }}
{{ $achat->note ?? 'Aucune note' }}
Total : {{ number_format($achat->items->sum('amount'), 0, ',', ' ') }} FCFA
| # | Désignation | Quantité | Prix | Montant |
|---|---|---|---|---|
| {{ $key + 1 }} | {{ $item->designation }} | {{ $item->quantity }} | {{ number_format($item->price, 0, ',', ' ') }} FCFA | {{ number_format($item->amount, 0, ',', ' ') }} FCFA |