Medical Consultant Consultation Portal

Your New Appointment Booked Successfully

Meeting Appointment ID: {{ $appointment->id }}

Meeting Patient ID: {{ $appointment->patient_id }}

Meeting Patient Name: {{ $appointment->patient ? $appointment->patient->name : 'No Name' }}

Meeting doctor ID: {{ $appointment->doctor_id }}

Meeting doctor Name: {{ $appointment->doctor ? $appointment->doctor->name : 'No Name' }}

Meeting clinic ID: {{ $appointment->clinic_id }}

Meeting clinic Name: {{ $appointment->clinic_id ? $appointment->clinic->name : 'No Clinic Selected' }}

Meeting Date: {{ $appointment->date }}

Start Time: {{ $appointment->start_time }}

End Time: {{ $appointment->end_time }}

Fee To Be Deducted: {{ $appointment->fee }}

Is Paid: {{ $appointment->is_paid ? 'Paid' : 'Unpaid' }}

Meeting Fund ID: {{ $appointment->fund_id }}

Meeting Appointment Type: {{ $appointment->appointment_type ? $appointment->appointment_type->display_name : 'Default' }}

Attached Question: {{ $appointment->question }}

Meeting Attachment URL: {{ $appointment->attachment_url }}

Meeting Appointment Status Code: {{ $appointment->appointment_status_code }}

@php $statusDescription = ''; switch ($appointment->appointment_status_code) { case 1: $statusDescription = 'Appointment is Registered'; case 2: $statusDescription = 'Appointment Accepted Successfully'; break; case 3: $statusDescription = 'Appointment Rejected Successfully'; break; case 4: $statusDescription = 'Appointment Cancelled Successfully'; break; case 5: $statusDescription = 'Appointment Marked as Completed Successfully'; break; default: $statusDescription = 'Unknown Status'; } @endphp

Meeting Appointment Status: {{ $statusDescription }}

Check Appointment Detail