@if ($voyages->count() > 0)
# |
Réference |
Camion |
Période de voyage |
Départ |
Destination |
Action |
@foreach ($voyages as $key => $voyage)
{{ $key + 1 }} |
{{ $voyage->reference }} |
{{ $voyage->camion_name }} |
{{ \Carbon\Carbon::parse($voyage->start)->format('d/m/Y') }} - {{ \Carbon\Carbon::parse($voyage->end)->format('d/m/Y') }} |
{{ $voyage->lieu_aller }} ==> {{ $voyage->lieu_retour }} |
{{ $voyage->lieu_retour }} ==> {{ $voyage->lieu_aller }} |
|
@endforeach
@else
Aucun élément trouvé.
@endif