@yield('title')

{{-- Total Camions --}}
Total Camions

{{ $totalCamions }}

{{-- Voyages en cours --}}
Voyages en cours

{{ $voyagesEnCours }}

{{-- Voyages terminés --}}
Voyages terminés

{{ $voyagesTermines }}

{{-- Total Bons --}}
Total Bons

{{ $totalBons }}

10 Camions en voyage
@forelse($camionsEnVoyageListe as $index => $trip) @empty @endforelse
# Camion Chauffeur Destination Date départ Statut
{{ $index + 1 }} {{ $trip->camion->plaque_immatriculation_tracteur ?? '-' }} / {{ $trip->camion->plaque_immatriculation_equipement ?? '-' }} {{ $trip->camion->chauffeur->first_name ?? '-' }} {{ $trip->camion->chauffeur->last_name ?? '-' }} {{ $trip->arrival_aller ?? '-' }} {{ \Carbon\Carbon::parse($trip->start_date)->format('d/m/Y') }} En voyage
Aucun camion en voyage