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

Payment confirmed!
Payment has been received and the booking is now confirmed.

Booking Number
{{ $booking->booking_number }}
Confirmed
Guest Name {{ $guest->first_name }} {{ $guest->last_name }}
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') }}
Room {{ $rooms->first()->roomType->name ?? 'Room' }}

Amount Paid

{{ $booking->currency }} {{ number_format($booking->total_amount, 0, ',', '.') }}

{{ $booking->confirmed_at ? $booking->confirmed_at->format('d M Y, H:i') : now()->format('d M Y, H:i') }}

The guest has been notified of their confirmed booking.

@endsection