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

Inspections

Export CSV
Clear
@foreach($inspections as $inspection) @endforeach
ID Date Worker Equipment Checklist Status Actions
#{{ $inspection->id }} {{ $inspection->inspection_date->format('M d, Y H:i') }} {{ $inspection->user->full_name }} {{ $inspection->equipment->name }} {{ $inspection->checklist->title }} {{ $inspection->getStatusLabel() }}
{{ $inspections->appends(request()->query())->links() }}
@endsection