Bon d'achat #{{ $achat->reference }}

Informations

Date : {{ \Carbon\Carbon::parse($achat->date)->format('d/m/Y') }}

Référence : {{ $achat->reference }}

Fournisseur

{{ $achat->fournisseur->fullname ?? '-' }}

{{ $achat->fournisseur->phone ?? '' }}

Note

{{ $achat->note ?? 'Aucune note' }}

Résumé

Total : {{ number_format($achat->items->sum('amount'), 0, ',', ' ') }} FCFA

Détails du bon
@foreach($achat->items as $key => $item) @endforeach
# Désignation Quantité Prix Montant
{{ $key + 1 }} {{ $item->designation }} {{ $item->quantity }} {{ number_format($item->price, 0, ',', ' ') }} FCFA {{ number_format($item->amount, 0, ',', ' ') }} FCFA