@extends('layouts.app') @section('title', 'Emergency Equipment') @section('content')
Manage emergency equipment inventory
| Equipment Name | Type | Location | Serial Number | Next Inspection | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $item->equipment_name }} | {{ ucfirst(str_replace('_', ' ', $item->equipment_type)) }} | {{ $item->location }} | {{ $item->serial_number ?? 'N/A' }} | {{ $item->next_inspection_date ? $item->next_inspection_date->format('M d, Y') : 'N/A' }} | {{ ucfirst($item->status) }} | View Edit |
| No emergency equipment found. | ||||||