@extends('layouts.app') @section('title', 'Emergency Contact: ' . $contact->name) @section('content')
Back

{{ $contact->name }}

{{ $contact->organization ?? 'Emergency Contact' }}

Edit

Contact Details

Name
{{ $contact->name }}
@if($contact->organization)
Organization
{{ $contact->organization }}
@endif
Contact Type
{{ ucfirst(str_replace('_', ' ', $contact->contact_type)) }}
Primary Phone
{{ $contact->phone_primary }}
@if($contact->phone_secondary)
Secondary Phone
{{ $contact->phone_secondary }}
@endif @if($contact->email)
Email
{{ $contact->email }}
@endif @if($contact->location)
Location
{{ $contact->location }}
@endif @if($contact->specialization)
Specialization
{{ $contact->specialization }}
@endif @if($contact->availability)
Availability
{{ $contact->availability }}
@endif @if($contact->priority)
Priority
{{ $contact->priority }}/10
@endif
Status
{{ $contact->is_active ? 'Active' : 'Inactive' }}
@if($contact->address)
Address
{{ $contact->address }}
@endif @if($contact->notes)
Notes
{{ $contact->notes }}
@endif
@endsection