@extends('layouts.app') @section('title', 'Emergency Contacts') @section('content')
Manage emergency contact information
| Name | Organization | Contact Type | Primary Phone | 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. | ||||||