libra/resources/views/emails/admin/new-booking/en.blade.php

39 lines
829 B
PHP

<x-mail::message>
# New Consultation Request
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 }}
@endif
@endif
- **Name:** {{ $clientName }}
- **Email:** {{ $clientEmail }}
- **Phone:** {{ $clientPhone ?? 'Not provided' }}
@unless($isGuest)
- **Client Type:** {{ ucfirst($client->user_type) }}
@endunless
**Appointment Details:**
- **Date:** {{ $formattedDate }}
- **Time:** {{ $formattedTime }}
**Problem Summary:**
{{ $consultation->problem_summary }}
<x-mail::button :url="$reviewUrl">
Review Request
</x-mail::button>
Regards,<br>
{{ config('app.name') }}
</x-mail::message>