@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.

Booking Number
{{ $booking->booking_number }}
Pending Payment
Booking Date {{ $booking->booking_date->format('d M Y, H:i') }}
Check-in {{ \Carbon\Carbon::parse($rooms->first()->checkin_date)->format('d M Y') }}
Check-out {{ \Carbon\Carbon::parse($rooms->first()->checkout_date)->format('d M Y') }}
Nights {{ $rooms->first()->total_nights }}
Total Amount {{ $booking->currency }} {{ number_format($booking->total_amount, 0, ',', '.') }}

Guest Information

@if($guest->phone_number) @endif @if($guest->country) @endif
Name {{ $guest->first_name }} {{ $guest->last_name }}
Email {{ $guest->email }}
Phone {{ $guest->phone_country_code ?? '' }} {{ $guest->phone_number }}
Country {{ $guest->country }}

Room Details

@foreach($rooms as $room)
{{ $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, ',', '.') }}
@endforeach @if($extras->count() > 0)

Extra Services

@foreach($extras as $extra)
{{ $extra->extra->name ?? 'Extra Service' }}
Qty: {{ $extra->quantity }}
{{ $booking->currency }} {{ number_format($extra->total_amount, 0, ',', '.') }}
@endforeach @endif @if($booking->special_requests)

Special Requests

{{ $booking->special_requests }}

@endif

⏰ Payment Due: {{ $booking->payment_due_date ? $booking->payment_due_date->format('d M Y, H:i') : 'Within 24 hours' }}

@endsection