47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
@php
|
|
$locale = $user->preferred_language ?? 'ar';
|
|
@endphp
|
|
@component('mail::message')
|
|
@if($locale === 'ar')
|
|
<div dir="rtl" style="text-align: right;">
|
|
# {{ __('emails.reminder_2h_title', [], $locale) }}
|
|
|
|
{{ __('emails.reminder_2h_greeting', ['name' => $user->company_name ?? $user->full_name], $locale) }}
|
|
|
|
{{ __('emails.reminder_2h_body', [], $locale) }}
|
|
|
|
**{{ __('emails.booking_time', [], $locale) }}** {{ \Carbon\Carbon::parse($consultation->booking_time)->format('g:i A') }}
|
|
|
|
@if($showPaymentReminder)
|
|
@component('mail::panel')
|
|
**{{ __('emails.payment_urgent', [], $locale) }}** {{ __('emails.payment_urgent_text', [], $locale) }}
|
|
@endcomponent
|
|
@endif
|
|
|
|
{{ __('emails.reminder_2h_contact', [], $locale) }}
|
|
|
|
{{ __('emails.regards', [], $locale) }}<br>
|
|
{{ config('app.name') }}
|
|
</div>
|
|
@else
|
|
# {{ __('emails.reminder_2h_title', [], $locale) }}
|
|
|
|
{{ __('emails.reminder_2h_greeting', ['name' => $user->company_name ?? $user->full_name], $locale) }}
|
|
|
|
{{ __('emails.reminder_2h_body', [], $locale) }}
|
|
|
|
**{{ __('emails.booking_time', [], $locale) }}** {{ \Carbon\Carbon::parse($consultation->booking_time)->format('g:i A') }}
|
|
|
|
@if($showPaymentReminder)
|
|
@component('mail::panel')
|
|
**{{ __('emails.payment_urgent', [], $locale) }}** {{ __('emails.payment_urgent_text', [], $locale) }}
|
|
@endcomponent
|
|
@endif
|
|
|
|
{{ __('emails.reminder_2h_contact', [], $locale) }}
|
|
|
|
{{ __('emails.regards', [], $locale) }}<br>
|
|
{{ config('app.name') }}
|
|
@endif
|
|
@endcomponent
|