Plan Details
- Title
- {{ $plan->title }}
- Location
- {{ $plan->location }}
- Plan Type
- {{ ucfirst($plan->plan_type) }}
- Status
-
{{ $plan->is_active ? 'Active' : 'Inactive' }}
@if($plan->next_review_date)
- Next Review Date
-
{{ $plan->next_review_date->format('M d, Y') }}
@if($plan->next_review_date < now())
(Due)
@endif
@endif
@if($plan->description)
- Description
- {{ $plan->description }}
@endif
@if($plan->evacuation_procedures || $plan->accountability_procedures || $plan->special_needs_procedures)