{{ auth()->user()->name }} - {{ ucfirst(auth()->user()->role) }}

Last Login: {{ auth()->user()->last_login_at?->format('M j, Y H:i') ?? 'N/A' }}

Total Patients

1,234

Today's Appointments

15

Pending Lab Results

8

Critical Alerts

2

Recent Patients

@foreach($recentPatients as $patient)
{{ $patient->full_name }}
{{ $patient->mrn }} • {{ $patient->age }}yo
View →
@endforeach

Quick Actions

@can('create-patient') + New Patient Registration @endcan @can('create-appointment') + Schedule Appointment @endcan View Lab Results

Today's Appointments

@forelse($appointments as $appointment)
{{ $appointment->patient->full_name }}
{{ $appointment->scheduled_at->format('h:i A') }} • {{ $appointment->type }}
@empty
No appointments scheduled for today
@endforelse