@extends('emails.partials.base_template')
@section('title', 'New Booking Received')
@section('subtitle', 'A new direct booking has been submitted')
@section('content')
Hello Admin Team,
A new direct booking has been received and requires your attention. Please review the details below and take appropriate action.
New Booking Alert! This booking requires immediate review and processing.
Booking Information
Booking ID:
#{{ $booking->id }}
Booking Date:
{{ $booking->created_at->format('M d, Y H:i') }}
Status:
New
Customer Information
Name:
{{ $booking->customer_name }}
Vehicle & Route Details
Vehicle Type:
{{ $booking->vehicle_type }}
Pickup Location:
{{ $booking->pickup_location }}
Delivery Location:
{{ $booking->delivery_location }}
@if($booking->pickup_date)
Pickup Date:
{{ $booking->pickup_date }}
@endif
@if($booking->pickup_time)
Pickup Time:
{{ $booking->pickup_time }}
@endif
Action Required: Please review this booking in the admin panel and assign a driver as soon as possible.
Customer satisfaction depends on quick response times.
Next Steps:
1. Review the booking details in the admin panel
2. Assign an appropriate driver
3. Confirm pickup and delivery details
4. Send confirmation to the customer
@endsection