|
Hello,
You have received a new appointment booking. Below are the details:
| Name |
{{ $validated['name'] }} |
| Email |
{{ $validated['email'] }} |
| Phone |
{{ $validated['phone'] }} |
| Service |
{{ $validated['service']
? \App\Models\Product::where('id', $validated['service'])->value('title')
: 'Not selected' }}
|
{{-- {{ $validated['service'] }} | --}}
| Date |
{{ $validated['appointment_date'] }} |
| Time |
{{ \Carbon\Carbon::parse($validated['appointment_date'])->format('h:i A') }} |
@if (!empty($validated['message']))
| Message |
{{ $validated['message'] }} |
@endif
Please contact the client if confirmation is required.
Regards,
{{ config('app.name') }}
|