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

Fire Drills

Manage fire drill records

New Fire Drill
Reset
@forelse($fireDrills as $drill) @empty @endforelse
Reference Date & Time Location Type Participants Result Actions
{{ $drill->reference_number }} {{ $drill->drill_date->format('M d, Y') }} {{ $drill->drill_time }} {{ $drill->location }} {{ ucfirst($drill->drill_type) }} {{ $drill->total_participants }} @if($drill->overall_result) {{ ucfirst(str_replace('_', ' ', $drill->overall_result)) }} @else Pending @endif View Edit
No fire drills found.
{{ $fireDrills->links() }}
@endsection