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

Inspections

Manage inspection records

New Inspection
Reset
@forelse($inspections as $inspection) @empty @endforelse
Reference Title Date Location Inspected By Status Actions
{{ $inspection->reference_number }} {{ $inspection->title }} {{ $inspection->inspection_date->format('M d, Y') }} {{ $inspection->location }} {{ $inspection->inspectedBy->name }} {{ ucfirst(str_replace('_', ' ', $inspection->overall_status)) }} View Edit
No inspections found.
{{ $inspections->links() }}
@endsection