{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
Follow-Up Requests
Review doctor follow-up requests and schedule patient appointments
Pending
{{ $pendingCount }}
Scheduled
{{ $scheduledCount }}
Completed
{{ $completedCount }}
Follow-Up Request List
Add Follow-Up{{ $initial }}
{{ $name }}
{{ $patient['upsi_id'] ?? '-' }}
{{ $f['notes'] ?? 'No notes recorded.' }}
{{ $date }}
Suggested by {{ $doctor['full_name'] ?? 'Doctor' }}
{{ ucfirst($status) }}
@if($status === 'pending')
Schedule Appointment
@elseif($status === 'cancelled')
{{ ucfirst($status) }}
@else
{{ ucfirst($status) }}
@endif
@if(!in_array($status, ['cancelled', 'completed']))
@endif
No follow-up requests found.
@endforelse