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

Inspection Checklists

Manage inspection checklist templates

New Checklist
Reset
@forelse($checklists as $checklist) @empty @endforelse
Name Category Items Status Actions
{{ $checklist->name }} {{ $checklist->category ?? 'N/A' }} {{ count($checklist->items ?? []) }} items {{ $checklist->is_active ? 'Active' : 'Inactive' }} View Edit
No inspection checklists found.
{{ $checklists->links() }}
@endsection