We are pleased to confirm that the appointment of {{ $appointment->f_name }} {{ $appointment->l_name }} has been successfully scheduled with {{ $doctor->name }}.
Appointment Details:
- Patient Name: {{ $appointment->f_name }} {{ $appointment->l_name }}
- Date: {{ $appointment->date }}
- Time: {{ $appointment->time }}
- Reason for Visit: {{ $appointment->reason }}
- Appointment Type:
@if($appointment->type_of_appointment === 'physical consultation')
Physical Visit
@elseif($appointment->type_of_appointment === 'online consultation')
Online Consultation
@endif
@if($appointment->type_of_appointment === 'online consultation' && isset($meetingUrl))
To join the online appointment, please use the following link: {{ $meetingUrl }}
@endif
If you have any questions or need to reschedule, please don't hesitate to contact us.
Thank you, and we look forward to seeing you.
Sincerely,
Your Clinic Team