| Référence : {{ $expense->trip->reference }} | Camion : {{ $expense->trip->camion->plaque_immatriculation_tracteur ?? '-' }} / {{ $expense->trip->camion->plaque_immatriculation_equipement ?? '-' }} |
| Chauffeur : {{ $expense->trip->chauffeur ?? '-' }} | Date départ : {{ \Carbon\Carbon::parse($expense->trip->start_date)->format('d/m/Y') }} |
| Date retour : {{ $expense->trip->end_date ?? '-' }} | Statut : {{ $expense->trip->status }} |
| Date | Type | Libellé | Quantité | Prix | Montant (FCFA) |
|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($expense->date)->format('d/m/Y') }} | {{ $expense->type }} | {{ $expense->label }} | {{ $expense->quantity }} | {{ number_format($expense->price, 0, '.', ' ') }} | {{ number_format($expense->amount, 0, '.', ' ') }} |