@extends('layouts.app') @section('title', 'Element 11: Emergency Preparedness and Contingency Planning') @section('content')
Define emergency response plans, conduct drills, and maintain escalation contacts
{{ $responsePlans->count() }}
{{ $responsePlans->where('approval_status', 'approved')->count() }} approved
{{ $drillsThisYear }}
Completed drills
{{ $drills->whereIn('status', ['scheduled'])->count() }}
Scheduled drills
{{ $contacts->count() }}
Escalation contacts
| Plan # | Plan Title | Emergency Type | Responsible Person | Approval Status | Version |
|---|---|---|---|---|---|
| {{ $plan->plan_number }} | {{ $plan->plan_title }} | {{ $plan->emergency_type }} | {{ $plan->responsible_person }} | {{ ucfirst(str_replace('_', ' ', $plan->approval_status)) }} | {{ $plan->version }} |
| No emergency response plans found. | |||||
| Drill # | Drill Title | Drill Type | Scheduled Date | Participants | Status | Performance |
|---|---|---|---|---|---|---|
| {{ $drill->drill_number }} | {{ $drill->drill_title }} | {{ $drill->drill_type }} | {{ $drill->scheduled_date ? $drill->scheduled_date->format('d M Y H:i') : 'N/A' }} | @if($drill->participants_actual) {{ $drill->participants_actual }}/{{ $drill->participants_expected }} @else Target: {{ $drill->participants_expected }} @endif | {{ ucfirst(str_replace('_', ' ', $drill->status)) }} | @if($drill->performance_rating) @else Not rated @endif |
| No emergency drills found. | ||||||
| Contact Type | Organization | Contact Person | Phone | Availability | Priority | Last Verified |
|---|---|---|---|---|---|---|
| {{ $contact->contact_type }} | {{ $contact->organization_name }} | {{ $contact->contact_person }} |
{{ $contact->phone_primary }}
|
{{ $contact->availability }} | {{ ucfirst($contact->priority_level) }} | @if($contact->last_verified_date) {{ $contact->last_verified_date->diffForHumans() }} @else Needs verification @endif |
| No emergency contacts found. | ||||||