complete 3.8 with qa test
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
@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
|
||||
Reference in New Issue
Block a user