{{-- HEADER --}}
{{-- INFOS COMMANDE --}}
Commande
Référence : {{ $commande->reference }}
Date : {{ $commande->created_at->format('d/m/Y') }}
{{-- CLIENT --}}
Client
Nom : {{ $commande->client->fullname ?? '-' }}
Contact : {{ $commande->client->contact ?? '-' }}
{{-- ARTICLES --}}
Détails
| Produit |
Qté |
Prix |
Montant |
@foreach($commande->items as $item)
| {{ $item->designation ?? '-' }} |
{{ $item->quantity }} |
{{ money($item->price) }} |
{{ money($item->amount) }} |
@endforeach
{{-- TOTAL --}}
Résumé
Total : {{ money($commande->amount->amount_items) }}
{{-- FOOTER --}}