28 lines
908 B
PHP
28 lines
908 B
PHP
@component('mail::message')
|
|
# {{ __('emails.new_booking_request_title') }}
|
|
|
|
{{ __('emails.new_booking_request_body') }}
|
|
|
|
**{{ __('emails.client_details') }}**
|
|
|
|
- **{{ __('emails.client_name') }}** {{ $client->company_name ?? $client->full_name }}
|
|
- **{{ __('emails.client_email') }}** {{ $client->email }}
|
|
- **{{ __('emails.client_phone') }}** {{ $client->phone }}
|
|
|
|
**{{ __('emails.booking_details') }}**
|
|
|
|
- **{{ __('emails.booking_date') }}** {{ \Carbon\Carbon::parse($consultation->booking_date)->translatedFormat('l, d M Y') }}
|
|
- **{{ __('emails.booking_time') }}** {{ \Carbon\Carbon::parse($consultation->booking_time)->format('g:i A') }}
|
|
|
|
**{{ __('emails.problem_summary') }}**
|
|
|
|
{{ $consultation->problem_summary }}
|
|
|
|
@component('mail::button', ['url' => route('admin.dashboard')])
|
|
{{ __('emails.view_in_dashboard') }}
|
|
@endcomponent
|
|
|
|
{{ __('emails.regards') }}<br>
|
|
{{ config('app.name') }}
|
|
@endcomponent
|