{{-- HEADER --}}

Nom Atelier

Bamako - Mali
Tel : 70 00 00 00
{{-- 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
@foreach($commande->items as $item) @endforeach
Produit Qté Prix Montant
{{ $item->designation ?? '-' }} {{ $item->quantity }} {{ money($item->price) }} {{ money($item->amount) }}
{{-- TOTAL --}}
Résumé
Total : {{ money($commande->amount->amount_items) }}
{{-- FOOTER --}}