@extends('emails.layouts.email') @section('title', 'New Booking - ' . $booking->booking_number) @section('header_title', '🆕 New Booking Alert') @section('content')
New booking received!
A new booking has been created and is awaiting payment.
| Name | {{ $guest->first_name }} {{ $guest->last_name }} |
| {{ $guest->email }} | |
| Phone | {{ $guest->phone_country_code ?? '' }} {{ $guest->phone_number }} |
| Country | {{ $guest->country }} |
|
{{ $room->roomType->name ?? 'Room' }}
{{ $room->ratePlan->name ?? 'Standard Rate' }} •
{{ $room->adults }} Adult(s)@if($room->children), {{ $room->children }} Child(ren)@endif
|
{{ $booking->currency }} {{ number_format($room->total_amount, 0, ',', '.') }} |
|
{{ $extra->extra->name ?? 'Extra Service' }}
Qty: {{ $extra->quantity }}
|
{{ $booking->currency }} {{ number_format($extra->total_amount, 0, ',', '.') }} |
{{ $booking->special_requests }}
⏰ Payment Due: {{ $booking->payment_due_date ? $booking->payment_due_date->format('d M Y, H:i') : 'Within 24 hours' }}