@extends('layouts.admin') @section('page_kicker', 'Operations') @section('page_title', 'Hospital admin dashboard') @section('content')

Hospital doctors

{{ $stats['doctors'] }}

Pharmacists

{{ $stats['pharmacists'] }}

Patients

{{ $stats['patients'] }}

Appointments

{{ $stats['appointments'] }}

Reports

{{ $stats['reports'] }}

Create hospital doctor

Onboard a clinician to this facility.

@csrf @isset($departments) @if($departments->isNotEmpty())

Departments (auto-assignment)

@foreach($departments as $dept) @endforeach
@endif @endisset

Create staff

Pharmacist, nurse, or receptionist accounts.

@csrf

Register patient

Create a portal login for walk-in or referral.

@csrf

Add medicine inventory

Stock a SKU for pharmacy dispensing.

@csrf

Schedule appointment

Link patient and doctor with a visit type.

@csrf

Hospital doctors

Active roster snapshot.

Recent patients

Latest registrations.

Recent prescriptions

Latest orders by ID.

Recent appointments

Upcoming and in-progress visits.

@foreach($appointments as $appointment) @endforeach
Patient Doctor Scheduled at Type Status
{{ $appointment->patient_id }} {{ $appointment->doctor_id ?? '—' }} {{ $appointment->scheduled_at }} {{ $appointment->visit_type }} {{ $appointment->status }}
@endsection