# New Appointment Received
A new appointment has been booked via the website.
**Details:**
- **Patient Name:** {{ $appointment->title }} {{ $appointment->firstname }} {{ $appointment->lastname }}
- **Email:** {{ $appointment->email }}
- **Phone:** {{ $appointment->phone }}
- **Date:** {{ $appointment->date_of_birth }}
- **Time:** {{ $appointment->appointment_time }}
@if($appointment->doctor_id)
- **Doctor ID:** {{ $appointment->doctor_id }}
@endif
@if($appointment->department_id)
- **Department ID:** {{ $appointment->department_id }}
@endif
@if($appointment->speciality_id)
- **Service/Specialty ID:** {{ $appointment->speciality_id }}
@endif
- **Message:** {{ $appointment->message }}
View Appointment
Thanks,
{{ config('app.name') }}