| |
|
👋 Dear {{ $user->name }},
,
We hope this email finds you well. This is a friendly reminder about
your upcoming ride with {{ $setting->company_name }} scheduled for
{{ getDateByFormat($booking->pickup_date) }}
{{ getTimeByFormat($booking->pickup_time) }}.
@php
$serviceType = App\Models\ServiceType::whereId(
$booking->service_type,
)->first();
@endphp
Ride Details:
- Pickup Location: {{ $booking->pickup_location }}
- Destination: {{ $booking->drop_location }}
- Total Fare: {{ $booking->grand_total }}
- Trip Type: {{ ucfirst($serviceType->name ?? 'N/A') }}
To ensure a smooth experience, please remember to have your payment
method ready.
If you have any questions or need to make changes to your booking,
please contact us at {{ $setting->company_email }}
or {{ $setting->company_phone }}.
We look forward to serving you and providing a safe and comfortable
journey.
Regards,
{{ Auth::user()->name }}
{{ $setting->company_name }}
|
|
|
|