Hello {{ $user->name }},
Your booking has been confirmed! Here are the details:
{{ $listing->title }}
Booking Reference:
BOOK-{{ $booking->id }}
Check-in Date:
{{ $booking->check_in->format('l, F j, Y') }}
Check-out Date:
{{ $booking->check_out->format('l, F j, Y') }}
Duration:
{{ $booking->days }} {{ Str::plural('day', $booking->days) }}
Number of Guests:
{{ $booking->guests }} {{ Str::plural('guest', $booking->guests) }}
Location:
{{ $listing->location->name }}
Rental Type:
{{ $listing->rentalType->name }}
@if($booking->pickupLocation)
📍 Pickup Location:
{{ $booking->pickupLocation->name }}
⏰ Pickup Time:
{{ date('h:i A', strtotime($booking->pickup_time)) }}
📍 Dropoff Location:
{{ $booking->dropoffLocation->name }}
⏰ Dropoff Time:
{{ date('h:i A', strtotime($booking->dropoff_time)) }}
@else
Total Amount Paid:
RM {{ number_format($booking->total_price, 2) }}
📌 Important Information
- Please arrive on or after your check-in date
- Bring a valid ID for verification
- Contact details: {{ $user->email }} / {{ $user->phone }}
- Any questions? Contact our support team
We look forward to hosting you!
Best regards,
The GengSewa Team