Réparations & Entretiens du camion
@if($reparations->count() > 0)
@foreach($reparations as $key => $reparation) @endforeach
# Reference Début Fin Garagiste Description Statut Actions
{{ $key + 1 }} {{ $reparation->reference ?? '-' }} {{ \Carbon\Carbon::parse($reparation->debut)->format('d/m/Y') }} {{ $reparation->fin ? \Carbon\Carbon::parse($reparation->fin)->format('d/m/Y') : '-' }} {{ $reparation->garagiste }} {{ \Illuminate\Support\Str::limit($reparation->desc, 30) }} @if($reparation->fin == null) Au garage @else Terminé @endif
{{-- Pagination --}}
{{ $reparations->links() }}
@else
Aucun élément

Aucune réparation trouvée pour ce camion.

@endif