BT LOGISTIQUE

Faladie, non loin de la Tour d'afrique, en face de la station Total,
Bamako, Mali

Rue : 790 - Porte : 256
+223 76 71 71 70
contact@btlogistique.com
Date impression : {{ now()->format('d/m/Y') }}

RAPPORT FINAL DE VOYAGE

Référence : {{ $trip->reference }} Camion : {{ $trip->camion->plaque_immatriculation_tracteur ?? '-' }} / {{ $trip->camion->plaque_immatriculation_equipement ?? '-' }}
Chauffeur : {{ $trip->chauffeur ?? '-' }} Date départ : {{ \Carbon\Carbon::parse($trip->start_date)->format('d/m/Y') }}
Date fin : {{ \Carbon\Carbon::parse($trip->end_date)->format('d/m/Y') }} Statut : {{ $trip->status }}
Trajet : {{ $trip->departure_aller }} → {{ $trip->arrival_aller }} | Retour : {{ $trip->departure_retour }} → {{ $trip->arrival_retour }}

Produits transportés

@php $totalManquant = 0; $totalRecette = 0; @endphp @foreach($trip->products as $product) @php $totalManquant += ($product->manquant * $product->price_manquant); @endphp @php $totalRecette += ($product->weight * $product->price); @endphp @endforeach @if($trip->products->count() == 0) @endif
Produit Type Quantité ou Poids Prix unitaire Manquant Prix du manquant Total
{{ $product->name }} {{ $product->type }} {{ $product->weight }} {{ number_format($product->price, 0, '.', ' ') }} FCFA {{ $product->manquant }} {{ number_format($product->price_manquant, 0, '.', ' ') }} FCFA {{ number_format((($product->weight * $product->price) - ($product->manquant * $product->price_manquant)), 0, '.', ' ') }} FCFA
Aucun produit

Dépenses du voyage

@php $totalDepenses = 0; @endphp @foreach($trip->expenses as $expense) @php $totalDepenses += $expense->amount; @endphp @endforeach @if($trip->expenses->count() == 0) @endif
Date Type Ville Quantité Prix Montant
{{ \Carbon\Carbon::parse($expense->date)->format('d/m/Y') }} {{ $expense->label }} {{ $expense->city }} {{ $expense->quantity }} {{ number_format($expense->price, 0, '.', ' ') }} FCFA {{ number_format($expense->amount, 0, '.', ' ') }} FCFA
Aucune dépense
@php $totalManquantMontant = $totalManquant; $benefice = ($totalRecette - $totalManquantMontant) - $totalDepenses; @endphp

Total Dépenses : {{ number_format($totalDepenses, 0, '.', ' ') }} FCFA

Total Manquants : {{ number_format($totalManquantMontant, 0, '.', ' ') }} FCFA

Résultat Net : {{ number_format($benefice, 0, '.', ' ') }} FCFA