Patient List
@if($isEmergency)

Emergency Admission Mode

Priority admission - no waiting in queue

@endif
Currently Admitted

{{ $stats['total_active'] }}

Total Active Patients

Today's Visits

{{ $stats['total_today'] }}

New Visits Today

Free Beds

{{ $stats['beds_available'] }}

Available Bed Slots

Total Capacity

{{ $stats['beds_total'] }}

Registered Ward Beds

@if(count($patients) || (strlen($searchPatient) >= 3 && count($patients) === 0))
@if(count($patients))
@foreach($patients as $p)
{{ substr($p->first_name, 0, 1) }}

{{ $p->full_name }}

ID: {{ $p->uhid }} ยท {{ $p->phone }}

SELECT
@endforeach
@else

Patient Not Found

Search term: "{{ $searchPatient }}"

@endif
@endif
@if($patientId)
@endif

Doctor & Date

@if(count($doctors) > 1)
@error('doctorId') {{ $message }} @enderror
@else @endif
@error('admissionDate') {{ $message }} @enderror
@foreach($reasons as $r) @endforeach
@error('reason') {{ $message }} @enderror

Growth & Health Metrics

Observations

@foreach($clinicalNotes as $n) @endforeach

Ward & Bed

@error('wardId') {{ $message }} @enderror
@forelse($this->availableBeds as $bed) @empty

Select ward to see beds

@endforelse
@error('bedId')

{{ $message }}

@enderror

Check Details

Please review all information before saving

Cancel