32 lines
671 B
PHP
32 lines
671 B
PHP
<x-mail::message>
|
|
# Your Consultation Request Could Not Be Approved
|
|
|
|
Dear {{ $user->company_name ?? $user->full_name }},
|
|
|
|
We regret to inform you that we were unable to approve your consultation request.
|
|
|
|
**Request Details:**
|
|
|
|
- **Requested Date:** {{ $formattedDate }}
|
|
- **Requested Time:** {{ $formattedTime }}
|
|
|
|
@if($hasReason)
|
|
<x-mail::panel>
|
|
**Reason:**
|
|
|
|
{{ $reason }}
|
|
</x-mail::panel>
|
|
@endif
|
|
|
|
We welcome you to submit a new consultation request at another time that suits you.
|
|
|
|
<x-mail::button :url="config('app.url')">
|
|
Request New Consultation
|
|
</x-mail::button>
|
|
|
|
For inquiries, contact us at: info@libra.ps
|
|
|
|
Regards,<br>
|
|
{{ config('app.name') }}
|
|
</x-mail::message>
|