# New Appointment Received A new appointment has been booked via the website. **Details:** - **Patient Name:** {{ $appointment->title ?? '' }} {{ $appointment->firstname }} {{ $appointment->lastname }} - **Phone:** {{ $appointment->phone }} - **Date:** {{ $appointment->formattedDate }} - **Time:** {{ $appointment->time_of_appointment }} @if(!empty($appointment->doctor_name)) - **Doctor Name:** {{ $appointment->doctor_name }} @endif @if(!empty($appointment->department_name)) - **Department Name:** {{ $appointment->department_name }} @endif @if(!empty($appointment->speciality_name)) - **Service/Specialty Name:** {{ $appointment->speciality_name }} @endif Thanks,
{{ config('app.name') }}