@php use App\Helpers\Helper; @endphp
@extends('emails.layout')
@section('content')
@if ($data['locationName'])
@else
@endif
{{__("Hello!")}},
{{ $data['appointment']->doctor->full_name }}
You have a new appointment scheduled with {{ $data['appointment']->patient_fullname }}! Here are the key details:
-
Patient: {{ $data['appointment']->patient_fullname }}
, {{ $data['appointment']->patient->full_animal_properties }}.
- Pet owner: {{ $data['appointment']->client_fullname }}.
@if ($data['appointment']->scheduleType->id == 3)
- Email: {{$data['appointment']->client->email}}.
@if (!empty($data['appointment']->client->phone))
- Phone number: {{$data['appointment']->client->phone}}.
@endif
@endif
- Medical specialty: {{$data['appointment']->doctorSpeciality->name}}.
- Attention mode: {{$data['appointment']->scheduleType->name}}.
- Date and time: {{$data['startDateOnly']}}, at {{$data['startTimeOnly']}} (time
zone: {{$data['appointment']->doctor->time_zone}}).
@if ($data['appointment']->scheduleType->id == 3)
Note: You must contact the patient to confirm the appointment and provide the necessary instructions.
@endif
Note: It's important to confirm that payment has been completed one hour before the appointment.
Find attached a reminder for your calendar.
@endsection