Schedule Follow-Up Appointment
Confirm the appointment details before adding it to the patient schedule
{{ $patientName }}
{{ $patientName }}
{{ $patientId }} · {{ $role }}
{{ $role }}{{ $followUp['notes'] ?? 'No follow-up notes recorded.' }}
@php $adminName = $admin['full_name'] ?? 'PKU Admin'; $patientName = $patient['full_name'] ?? 'Unknown Patient'; $initial = strtoupper(substr($patientName, 0, 1)); $patientId = $patient['upsi_id'] ?? '-'; $faculty = $patient['faculty'] ?? '-'; $role = ucfirst($patient['role'] ?? 'Patient'); $suggestedDate = !empty($followUp['follow_up_date']) ? date('Y-m-d', strtotime($followUp['follow_up_date'])) : ''; $suggestedText = !empty($followUp['follow_up_date']) ? date('d M Y', strtotime($followUp['follow_up_date'])) : '-'; $doctorName = $doctor['full_name'] ?? 'Doctor'; @endphp
Confirm the appointment details before adding it to the patient schedule
{{ $patientId }} · {{ $role }}
{{ $role }}{{ $followUp['notes'] ?? 'No follow-up notes recorded.' }}