@extends('layouts.app') @section('title', 'Evacuation Plans') @section('content')

Evacuation Plans

Manage evacuation plans

New Plan
Reset
@forelse($plans as $plan) @empty @endforelse
Reference Title Location Type Next Review Status Actions
{{ $plan->reference_number }} {{ $plan->title }} {{ $plan->location }} {{ ucfirst($plan->plan_type) }} {{ $plan->next_review_date ? $plan->next_review_date->format('M d, Y') : 'N/A' }} {{ $plan->is_active ? 'Active' : 'Inactive' }} View Edit
No evacuation plans found.
{{ $plans->links() }}
@endsection