@extends('layouts.app') @section('title', 'Maternity Ward') @section('content') {{-- Top Actions — Admit Patient, top-left. Breadcrumb row ("< Inpatient Visits / Maternity Ward") was removed May 14 2026 once Maternity Ward was restored as a top-level sidebar entry. The page title and sidebar active-state already convey location, and Maternity Ward is no longer a child of General Inpatient — they are siblings under Patient Visits. The button is left-aligned to match the pattern on General Inpatient. --}}
| Patient | Admitted | GA | Reason | Status | Provider |
|---|---|---|---|---|---|
| {{ $a->patient->full_name ?? '' }} {{ $a->patient->mrn ?? '' }} |
{{ $a->admission_date?->format('d M Y H:i') ?? '-' }} | {{ $a->gestational_age_weeks ?? '-' }}wks | {{ Str::limit($a->reason_for_admission, 40) }} | {{ ucfirst(str_replace('_',' ',$a->status)) }} | {{ $a->attendingProvider->name ?? '-' }} |
| No active maternity admissions. | |||||
| Patient | Admitted | Discharged | Days |
|---|---|---|---|
| {{ $a->patient->full_name ?? '' }} | {{ $a->admission_date->format('d M') }} | {{ $a->discharge_date?->format('d M') ?? '-' }} | {{ $a->length_of_stay }} |
| None. | |||