@extends('layouts.app') @section('title', 'Inpatient Visits') @section('content') {{-- Top Actions — Issue #15: button enlarged to text-sm px-5 py-2.5. The Maternity Ward fold-in button (Issue #1, May 12 2026) was removed May 14 2026 once Maternity Ward was restored as a top-level sidebar item — duplication, not navigation help. --}}
{{-- Stats removed in Issue #14 May 2 2026: status filter dropdown + table count cover the same info without the visual weight. --}} {{-- Queue --}}| Admission Date | Patient | Age / Sex | Ward / Bed | Days | Clinician | Status |
|---|---|---|---|---|---|---|
| {{ $adm->admission_date->format('d M Y') }} |
{{ $adm->patient->full_name ?? '' }} {{ $adm->patient->phone ?? '' }} |
{{ $adm->patient->age ?? '' }} / {{ ucfirst(substr($adm->patient->gender ?? '', 0, 1)) }} | {{ $adm->ward->name ?? '' }} · Bed {{ $adm->bed->bed_number ?? '' }} | {{ $adm->length_of_stay }}d | {{ $adm->clinician->name ?? '-' }} | @php $asc = ['admitted'=>'badge-info','discharged'=>'badge-success']; @endphp {{ ucfirst($adm->status) }} |
| No admissions found. | ||||||