41 lines
1.0 KiB
PHP
41 lines
1.0 KiB
PHP
<x-mail::message>
|
|
<div dir="rtl" style="text-align: right;">
|
|
# طلب استشارة جديد
|
|
|
|
تم تقديم طلب استشارة جديد ويتطلب مراجعتك.
|
|
|
|
**معلومات العميل:**
|
|
|
|
@if($isGuest)
|
|
- **نوع الحجز:** زائر (بدون حساب)
|
|
@else
|
|
@if($client->user_type === 'company')
|
|
- **الشركة:** {{ $client->company_name }}
|
|
- **الشخص المسؤول:** {{ $client->contact_person_name }}
|
|
@endif
|
|
@endif
|
|
- **الاسم:** {{ $clientName }}
|
|
- **البريد الإلكتروني:** {{ $clientEmail }}
|
|
- **الهاتف:** {{ $clientPhone ?? 'غير متوفر' }}
|
|
@unless($isGuest)
|
|
- **نوع العميل:** {{ $client->user_type === 'company' ? 'شركة' : 'فرد' }}
|
|
@endunless
|
|
|
|
**تفاصيل الموعد:**
|
|
|
|
- **التاريخ:** {{ $formattedDate }}
|
|
- **الوقت:** {{ $formattedTime }}
|
|
|
|
**ملخص المشكلة:**
|
|
|
|
{{ $consultation->problem_summary }}
|
|
|
|
<x-mail::button :url="$reviewUrl">
|
|
مراجعة الطلب
|
|
</x-mail::button>
|
|
|
|
مع أطيب التحيات،<br>
|
|
{{ config('app.name') }}
|
|
</div>
|
|
</x-mail::message>
|