BON DE COMMANDE : {{ $commande->numero_commande }}

Objet : {{ $commande->objet }}

Service Demandeur {{ $commande->service->nom ?? 'N/A' }}
Demandé par : {{ $commande->demandeur->name ?? 'N/A' }}
Le : {{ $commande->date_demande ? \Carbon\Carbon::parse($commande->date_demande)->format('d/m/Y') : 'N/A' }}
Informations Fournisseur {{ $commande->fournisseur->nom ?? 'N/A' }}
Réf : {{ $commande->reference_fournisseur ?? 'N/A' }}

@if($commande->imputation_budgetaire) @endif @if($commande->date_souhaitee) @endif
Imputation budgétaire : {{ $commande->imputation_budgetaire }}
Date de livraison souhaitée : {{ \Carbon\Carbon::parse($commande->date_souhaitee)->format('d/m/Y') }}
@foreach($commande->lignes as $ligne) @endforeach
Désignation Réf. Article Qté PU HT Total HT
{{ $ligne->designation }} {{ $ligne->reference ?? '-' }} {{ number_format($ligne->quantite, 2, ',', ' ') }} {{ $ligne->unite }} {{ number_format($ligne->prix_unitaire_ht, 2, ',', ' ') }} € {{ number_format($ligne->quantite * $ligne->prix_unitaire_ht, 2, ',', ' ') }} €
@if($commande->justification || $commande->description)
Notes / Justification :

{{ $commande->justification ?: $commande->description }}

@endif
Total HT : {{ number_format($commande->montant_ht, 2, ',', ' ') }} €
Total TTC : {{ number_format($commande->montant_ttc, 2, ',', ' ') }} €