@extends('emails.layouts.email') @section('title', 'Booking Confirmation - ' . $booking->booking_number) @section('header_title', 'Booking Confirmation') @section('content')
Dear {{ $guest->first_name }} {{ $guest->last_name }},
|
{{ $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, ',', '.') }} |
| Subtotal | {{ $booking->currency }} {{ number_format($booking->subtotal_amount, 0, ',', '.') }} | ||
| Tax | {{ $booking->currency }} {{ number_format($booking->tax_amount, 0, ',', '.') }} | ||
| Service Fee | {{ $booking->currency }} {{ number_format($booking->service_fee, 0, ',', '.') }} | ||
|
|||
⏰ Payment Due: {{ $booking->payment_due_date ? $booking->payment_due_date->format('d M Y, H:i') : 'Within 24 hours' }}
Please complete your payment before the due date to confirm your booking.
{{ $booking->special_requests }}
If you have any questions about your booking, please don't hesitate to contact us.