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

Housekeeping Inspections

Housekeeping inspection records

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