complete story 11.3 with qa tests
This commit is contained in:
@@ -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