@if ($voyages->count() > 0)
@foreach ($voyages as $voyage)
Numero de voyage : {{ $voyage->ref }}
Date de départ : {{ \Carbon\Carbon::parse($voyage->depart)->format('d/m/Y') }}
Plaque : {{ $voyage->camion->plaque }}
Chauffeur : {{ $voyage->camion->chauffeur->firstName }} {{ $voyage->camion->chauffeur->lastName }}
Co-Chauffeur : {{ $voyage->secondDriver }}
Trajet aller : {{ $voyage->lieu_depart }} ==> {{ $voyage->lieu_destination }}
Trajet retour : {{ $voyage->lieu_destination }} ==> {{ $voyage->lieu_depart }}
Produit transporté : {{ $voyage->produit ?? 'Non defini' }}
Capacité transportée : {{ $voyage->quantite }} L
@endforeach
@else
Aucune donnée disponible.
@endif