complete story 11.3 with qa tests
This commit is contained in:
@@ -6,15 +6,20 @@
|
||||
|
||||
**معلومات العميل:**
|
||||
|
||||
@if($isGuest)
|
||||
- **نوع الحجز:** زائر (بدون حساب)
|
||||
@else
|
||||
@if($client->user_type === 'company')
|
||||
- **الشركة:** {{ $client->company_name }}
|
||||
- **الشخص المسؤول:** {{ $client->contact_person_name }}
|
||||
@else
|
||||
- **الاسم:** {{ $client->full_name }}
|
||||
@endif
|
||||
- **البريد الإلكتروني:** {{ $client->email }}
|
||||
- **الهاتف:** {{ $client->phone }}
|
||||
@endif
|
||||
- **الاسم:** {{ $clientName }}
|
||||
- **البريد الإلكتروني:** {{ $clientEmail }}
|
||||
- **الهاتف:** {{ $clientPhone ?? 'غير متوفر' }}
|
||||
@unless($isGuest)
|
||||
- **نوع العميل:** {{ $client->user_type === 'company' ? 'شركة' : 'فرد' }}
|
||||
@endunless
|
||||
|
||||
**تفاصيل الموعد:**
|
||||
|
||||
|
||||
@@ -5,15 +5,20 @@ A new consultation request has been submitted and requires your review.
|
||||
|
||||
**Client Information:**
|
||||
|
||||
@if($isGuest)
|
||||
- **Booking Type:** Guest (No Account)
|
||||
@else
|
||||
@if($client->user_type === 'company')
|
||||
- **Company:** {{ $client->company_name }}
|
||||
- **Contact Person:** {{ $client->contact_person_name }}
|
||||
@else
|
||||
- **Name:** {{ $client->full_name }}
|
||||
@endif
|
||||
- **Email:** {{ $client->email }}
|
||||
- **Phone:** {{ $client->phone }}
|
||||
@endif
|
||||
- **Name:** {{ $clientName }}
|
||||
- **Email:** {{ $clientEmail }}
|
||||
- **Phone:** {{ $clientPhone ?? 'Not provided' }}
|
||||
@unless($isGuest)
|
||||
- **Client Type:** {{ ucfirst($client->user_type) }}
|
||||
@endunless
|
||||
|
||||
**Appointment Details:**
|
||||
|
||||
|
||||
Reference in New Issue
Block a user