Manage your profile information and view system overview
@elseView your profile information
@endifTotal Clinics
{{ $statistics['total_clinics'] ?? 0 }}
Active Nurses
{{ $statistics['total_nurses'] ?? 0 }}
Total Zones
{{ $statistics['total_zones'] ?? 0 }}
Total Mothers
{{ $statistics['total_mothers'] ?? 0 }}
Nurses in Clinic
{{ \App\Models\User::where('clinic_id', $user->clinic_id)->where('role', 'nurse')->where('is_active', true)->count() }}
Active Zones
{{ \App\Models\Zone::where('clinic_id', $user->clinic_id)->where('is_active', true)->count() }}
Expectant Mothers
{{ \App\Models\ExpectantMother::where('clinic_id', $user->clinic_id)->count() }}
Pending Requests
{{ \App\Models\ClinicChangeRequest::where('new_clinic_id', $user->clinic_id)->where('status', 'pending')->count() }}
Assigned Mothers
{{ $statistics['assigned_mothers'] ?? 0 }}
Pending Appointments
{{ $statistics['pending_appointments'] ?? 0 }}
Total Appointments
{{ $statistics['total_appointments'] ?? 0 }}
Completed
{{ $statistics['completed_appointments'] ?? 0 }}
This Week's Duties
{{ $statistics['this_week_duties'] ?? 0 }}
Staff ID
{{ $user->staff_id ?? 'HN001' }}
Email Address
{{ $user->email }}
System Access
Full system-wide access to all 11 clinics
Phone Number
{{ $user->phone ?? 'Not provided' }}
Password Status
@if($user->must_change_password) Must Change Password @else Password Updated @endifJoined Date
{{ $user->created_at->format('F j, Y') }}
{{ $user->created_at->diffForHumans() }}
@if($user->clinic)
{{ $user->clinic->name }}
Clinic Administrator
@if($user->clinic->address)
{{ $user->clinic->address }}
@endif
@if($user->clinic->phone)
📞 {{ $user->clinic->phone }}
@endif
@else
Not assigned to any clinic
@endif
@if($user->clinic)
{{ $user->clinic->name }}
@if($user->clinic->address)
{{ $user->clinic->address }}
@endif
@if($user->clinic->phone)
📞 {{ $user->clinic->phone }}
@endif
@else
Not assigned to any clinic
@endif
{{ $user->phone ?? 'Not provided' }}
{{ ucfirst(str_replace('_', ' ', $user->role)) }}
{{ ($user->status ?? ($user->is_active ? 'active' : 'inactive')) === 'active' || $user->is_active ? 'Active' : 'Inactive' }}
@if($user->must_change_password)
Must Change Password
@else
Password Updated
@endif
@if($user->password_changed_at)
Last changed: {{ \Carbon\Carbon::parse($user->password_changed_at)->format('M j, Y') }}
@endif
{{ $user->created_at->format('F j, Y') }}
{{ $user->created_at->diffForHumans() }}
Profile information is managed by your administrator
Week of {{ $weekStartDate ? $weekStartDate->format('M j, Y') : 'Current Week' }}
| Day | Date | Zone/Room | Status |
|---|---|---|---|
|
{{ $duty->day_of_week }}
@if($duty->duty_date->isToday())
Today
@endif
|
{{ $duty->duty_date->format('M j, Y') }} |
{{ $duty->zone->zone_name ?? 'N/A' }}
{{ $duty->zone->zone_code ?? 'N/A' }}
|
@if($duty->duty_date->isPast()) Completed @elseif($duty->duty_date->isToday()) Today @else Upcoming @endif |
You don't have any duty assignments for this week.
Contact your clinic administrator if you believe this is an error.