| |
@php
$driver_booking = \App\Models\DriverBooking::where('booking_id',$booking->id)->first();
$driver_detail = \App\Models\Driver::whereId($driver_booking->driver_id)->first();
@endphp
|
👋 Dear {{$driver_detail->name}},
We are pleased to inform you that you have been assigned as the driver for the following ride:
Ride Details:
- Customer Name: {{$booking->first_name}}
- Contact Number: {{$booking->phone}}
- Pickup Location: {{$booking->pickup_location}}
- Destination: {{$booking->drop_location}}
- Date: {{getDateByFormat($booking->pickup_date)}}
- Time: {{getTimeByFormat($booking->pickup_time)}}
- Fleet Type: {{$booking->vehicle->name}}
@php
$travel_type = App\Models\TravelType::whereId($booking->transfer_type)->first();
$service = App\Models\Service::whereId($booking->service_id)->first();
$serviceType = App\Models\ServiceType::whereId($booking->service_type)->first();
@endphp
{{-- - Service: {{$service->name}}
--}}
- Travel Type: {{$travel_type->name}}
- Trip Type: {{$serviceType->name}}
- Pick-up Sign Board: {{$booking->pick_up_sign ?? ''}}
- Flight Number: {{$booking->flight_no ?? ''}}
- Special Note: {{$booking->driver_note ?? ''}}
Please arrive at the designated pickup location a few minutes before the scheduled time to ensure a smooth and punctual ride for the passenger.
If you have any questions or need to make changes to your booking, please contact us at {{$setting->company_email}} or {{$setting->company_phone}}
Thank you for your dedication and professionalism in providing our services. We appreciate your commitment to {{$setting->company_name}}.
Regards,
{{-- {{Auth::user()->name}} --}}
{{$setting->company_name}}
|
|
|
|