46 lines
1.0 KiB
PHP
46 lines
1.0 KiB
PHP
<x-mail::message>
|
|
# Your Consultation Has Been Approved
|
|
|
|
Dear {{ $user->company_name ?? $user->full_name }},
|
|
|
|
We are pleased to inform you that your consultation request has been approved.
|
|
|
|
**Appointment Details:**
|
|
|
|
- **Date:** {{ $formattedDate }}
|
|
- **Time:** {{ $formattedTime }}
|
|
- **Duration:** {{ $duration }} minutes
|
|
- **Consultation Type:** {{ $consultationType }}
|
|
|
|
@if($isPaid && $paymentAmount)
|
|
<x-mail::panel>
|
|
**Payment Information:**
|
|
|
|
Amount Due: **{{ number_format($paymentAmount, 2) }} ILS**
|
|
|
|
@if($paymentInstructions)
|
|
{{ $paymentInstructions }}
|
|
@else
|
|
Please complete your payment before the consultation date.
|
|
@endif
|
|
</x-mail::panel>
|
|
@endif
|
|
|
|
<x-mail::panel>
|
|
**Office Location:**
|
|
|
|
{{ config('libra.office_address.en', 'Libra Law Firm') }}
|
|
</x-mail::panel>
|
|
|
|
<x-mail::button :url="config('app.url')">
|
|
Add to Calendar
|
|
</x-mail::button>
|
|
|
|
A calendar file (.ics) has been attached for you to add this appointment to your calendar.
|
|
|
|
If you have any questions, please don't hesitate to contact us.
|
|
|
|
Regards,<br>
|
|
{{ config('app.name') }}
|
|
</x-mail::message>
|