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

Inspections

Manage import inspections and survey reports

New Inspection
@forelse($inspections ?? [] as $inspection) @empty @endforelse
Inspection # Date Type Inspector Result Actions
{{ $inspection->inspection_number }} {{ $inspection->date->format('d M Y') }} {{ ucfirst($inspection->type) }} {{ $inspection->inspector ?? 'N/A' }} @php $resClass = match($inspection->result) { 'passed' => 'bg-success-subtle text-success', 'failed' => 'bg-danger-subtle text-danger', 'conditional' => 'bg-warning-subtle text-warning', default => 'bg-secondary-subtle text-secondary' }; @endphp {{ ucfirst($inspection->result) }}

No inspections found

@endsection