@if($inspections->isEmpty())
No Inspections Yet
Start your first inspection to see it here.
Start Inspection
@else
| ID |
Date |
Equipment |
Checklist |
Status |
Actions |
@foreach($inspections as $inspection)
| #{{ $inspection->id }} |
{{ $inspection->inspection_date->format('M d, Y H:i') }} |
{{ $inspection->equipment->name }} |
{{ $inspection->checklist->title }} |
{{ $inspection->getStatusLabel() }}
|
|
@endforeach
{{ $inspections->links() }}
@endif