# 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($appointment->doctor_name)
- **Doctor Name:** {{ $appointment->doctor_name }}
@endif
@if($appointment->department_name)
- **Department Name:** {{ $appointment->department_name }}
@endif
@if($appointment->speciality_name)
- **Service/Specialty name:** {{ $appointment->speciality_name }}
@endif
View Appointment
Thanks,
{{ config('app.name') }}