@extends('layouts.app') @section('title', 'My Inspections') @section('content')

My Inspections

New Inspection
@if($inspections->isEmpty())

No Inspections Yet

Start your first inspection to see it here.

Start Inspection
@else
@foreach($inspections as $inspection) @endforeach
ID Date Equipment Checklist Status Actions
#{{ $inspection->id }} {{ $inspection->inspection_date->format('M d, Y H:i') }} {{ $inspection->equipment->name }} {{ $inspection->checklist->title }} {{ $inspection->getStatusLabel() }}
{{ $inspections->links() }} @endif
@endsection