- Name
- {{ $contact->name }}
@if($contact->organization)
- Organization
- {{ $contact->organization }}
@endif
- Contact Type
- {{ ucfirst(str_replace('_', ' ', $contact->contact_type)) }}
@if($contact->phone_secondary)
@endif
@if($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