New Booking Confirmed

Payment processed and booking confirmed

Action Required

Please contact the customer within 24 hours to confirm pickup details and schedule the transport.

Booking Information

Booking ID: #{{ $booking->id }}
Customer Name: {{ $booking->customer_name }}
Customer Email: {{ $booking->customer_email }}
Customer Phone: {{ $booking->customer_phone }}
Vehicle Type: {{ $booking->vehicle_type }}
Pickup Location: {{ is_string($booking->pickup_location) ? $booking->pickup_location : ($booking->pickup_location['address'] ?? 'Not specified') }}
Delivery Location: {{ is_string($booking->delivery_location) ? $booking->delivery_location : ($booking->delivery_location['address'] ?? 'Not specified') }}
Pickup Date: {{ \Carbon\Carbon::parse($booking->pickup_date)->format('M d, Y') }}
Pickup Time: {{ \Carbon\Carbon::parse($booking->pickup_time)->format('g:i A') }}
Total Amount: ${{ number_format($booking->total_amount, 2) }}
Payment ID: #{{ $payment->id }}
Payment Status: Confirmed
Booking Status: Confirmed

Next Steps:

You can view and manage this booking in the admin dashboard.