@extends('layouts.app') @section('title', 'Emergency Contacts') @section('content')

Emergency Contacts

Manage emergency contact information

New Contact
Reset
@forelse($contacts as $contact) @empty @endforelse
Name Organization Contact Type Primary Phone Email Status Actions
{{ $contact->name }} {{ $contact->organization ?? 'N/A' }} {{ ucfirst(str_replace('_', ' ', $contact->contact_type)) }} {{ $contact->phone_primary }} {{ $contact->email ?? 'N/A' }} {{ $contact->is_active ? 'Active' : 'Inactive' }} View Edit
No emergency contacts found.
{{ $contacts->links() }}
@endsection