| |
@php
$serviceType = App\Models\ServiceType::whereId($booking->service_type)->first();
@endphp
|
👋 Dear {{ $user->name }},
We are pleased to inform you that your recent payment has been
successfully processed. Here are the payment details:
Payment Information:
- Payment Amount: {{ $booking->grand_total }}$
-
Payment Date: {{ getDateTimeFormat($booking->updated_at) }}
@php
$payment_method = App\Models\PaymentMethod::where('status',1)->first()
@endphp
- Payment Method: {{ $payment_method->name }}
- Booking ID: {{ $booking->id }}
- Trip Type: {{ ucfirst($serviceType->name ?? 'N/A') }}
Thank you for your prompt payment. If you have any questions or need
further assistance, please do not hesitate to contact our customer
support team at {{ $setting->company_email }}
or {{ $setting->company_phone }}
Thank you for choosing {{ $setting->company_name }}. We hope you
have a pleasant ride!
Regards,
{{ Auth::user()->name }}
{{ $setting->company_name }}
Download Invoice
|
|
|
|