# New EV Booking ( {{ $booking->ref_no }} )
A new EV booking was created at {{ $booking->created_at }}.
**Booking Summary**
- **Route:** {{ $booking->route->name ?? 'N/A' }}
- **Seat Options:** {{ $booking->vehicleOptions->map(fn($b) => "{$b->passenger_count} x {$b->vehicle_option->value}")->implode(', ') }}
- **Pickup Location:** {{ $booking->pickup_address ?? 'N/A' }}
- **Dropoff Location:** {{ $booking->dropoff_address ?? 'N/A' }}
- **Travel Date:** {{ $booking->travel_date ?? 'N/A' }}
- **Total Price:** {{ $booking->price ?? 'N/A' }}
{{-- @if(!empty($booking->notes))
**Notes:**
{{ $booking->notes }}
@endif --}}
Payment Method: {{ ($payment->gateway ?? 'N/A') }}
Contact Info: {{ ($booking->passenger_name ?? '') }} {{ $booking->passenger_phone ?? '' }}
Channel: {{ $booking->created_by_channel ?? '-' }}
View Booking
Auto generated from
{{ config('app.name') }}