@extends('emails.layouts.email') @section('title', 'Payment Reminder - ' . $booking->booking_number) @section('header_title', '⏰ Payment Reminder') @section('content')

Dear {{ $guest->first_name }} {{ $guest->last_name }},

⚠️ Action Required! Your booking payment is due soon. Please complete your payment to confirm your reservation.

We noticed that your payment for booking {{ $booking->booking_number }} is still pending. To secure your reservation, please complete the payment before the due date.

Booking Number
{{ $booking->booking_number }}
Pending Payment
Check-in Date {{ \Carbon\Carbon::parse($rooms->first()->checkin_date)->format('l, d M Y') }}
Check-out Date {{ \Carbon\Carbon::parse($rooms->first()->checkout_date)->format('l, d M Y') }}
Room {{ $rooms->first()->roomType->name ?? 'Room' }}
Amount Due {{ $booking->currency }} {{ number_format($booking->balance_due ?? $booking->total_amount, 0, ',', '.') }}
Payment Due: {{ $booking->payment_due_date ? $booking->payment_due_date->format('d M Y, H:i') : 'Soon' }}

⚠️ Important: If payment is not received by the due date, your booking may be automatically cancelled.

If you have already made the payment, please disregard this email.
For any questions, please contact us directly.

@endsection