@if ($voyages->count() > 0)
# |
Numero du voyage |
Camion |
Chauffeur |
Produit transporté |
Actions |
@foreach ($voyages as $key => $voyage)
{{ $key + 1 }} |
{{ $voyage->ref }} |
{{ $voyage->camion_name }} |
{{ $voyage->chauffeur_name }} |
{{ $voyage->produit }} |
|
@endforeach
@else
Aucun voyage terminé.
@endif