{{ __('Hospital Dashboard') }} {{ $hospital->hospital_name ?? ('Hospital #' . $hospital->hospital_id) }}
{{ __('Details') }}
{{ __('City') }}: {{ $hospital->city ?? '-' }}
{{ __('Phone') }}: {{ $hospital->phone_number ?? '-' }}
{{ __('Status') }}: {{ $hospital->status ?? '-' }}
{{ __('Urgent Cases') }} {{ __('Cases assigned to your hospital') }}
@include('components.jstable')
@foreach($urgentCases as $case) @endforeach
Full Name Recipient ID Phones Case Submitted Actions
user avatar
{{ $case->recipient?->first_name }} {{ $case->recipient?->last_name }} {{ $case->recipient?->city }} - {{ $case->recipient?->district }}
{{ $case->recipient?->id }} @forelse($case->recipient?->phoneNumbers ?? [] as $phone) {{ $phone->phone_number }} @empty No phones @endforelse
{{ $case->case_description ?: '—' }}
{{ $case->hospital_submitted_at?->format('Y-m-d H:i') ?? '—' }}