Patient Management

Quick Navigation

All Users Patients Employees Agents

Patient Management

{{ $users->totalOnAllPages() ?? 0 }} total patients
{{ $item->name }}
{{ $item->email }}
@if($item->phone)
{{ $item->phone }}
@else Not provided @endif
{{ ucfirst($item->status) }}
{{ $item->created_at->format('M j, Y') }}
{{ $item->created_at->format('g:i A') }}
@if($item->assignedDoctors->isEmpty()) Assign Doctor @endif View Profile Edit Remote Monitoring Create Ticket @php $canImpersonate = false; $currentUser = Auth::user(); // Staff can only impersonate patients, employees, and agents if ($currentUser->hasRole('staff') && $item->hasAnyRole(['patient', 'employee', 'agent'])) { $canImpersonate = true; } // Cannot impersonate yourself if ($currentUser->id === $item->id) { $canImpersonate = false; } @endphp @if($canImpersonate) @endif