| |
|
👋 Dear {{ $user->name }},
We hope this message finds you well. To simplify your payment process,
we have generated a secure payment link for your convenience. You can
make your payment by clicking the link below:
@php
$pickupdate = \Carbon\Carbon::parse($booking->pickup_date)->format(
'd F Y',
);
$pickuptime = getTimeByFormat($booking->pickup_time);
@endphp
Payment Details:
- Booking ID : {{ $booking->id }}
- Total Amount:${{ $booking->grand_total }}
Booking Details:
- Contact Number: {{ $booking->phone }}
- Pickup Location: {{ $booking->pickup_location }}
- Destination: {{ $booking->drop_location }}
- Date: {{ $pickupdate }}
- 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 ?? '' }}
- Service Type: {{ ucfirst($serviceType->name ?? 'N/A') }}
This link will take you to a secure payment page, ensuring the safety of
your transaction. If you encounter any issues or have questions
regarding your payment,
If you have any questions or need to make changes to your booking,
please contact us at {{ $setting->company_email }}
Thank you for choosing {{ $setting->company_name }}. Your prompt
payment is greatly appreciated.
Regards,
{{--
{{ Auth::user()->name }} --}}
{{ $setting->company_name }}
|
|
|
|