|
đź‘‹ Dear {{ $user->name }},
@if ($booking->comments)
{{ $booking->comments }}
@endif
Thank you for reaching out!
Below is the quote for your trip.
Quotation:
Base price for {{ $booking->vehicle->name }}:
${{ $booking->base_price }}
Toll: ${{ $booking->toll }}
Standard Gratuity: ${{ $booking->tip }}
Administrative charges: ${{ $booking->administrator ?? 0 }}
@if (isset($booking->discount) && $booking->discount > 0)
Discount: ${{ $booking->discount ?? '0' }}
@endif
Grand Total: ${{ $booking->grand_total }}
@if($booking->transfer_type == 2)
(Each way)
@endif
@php
$serviceType = App\Models\ServiceType::whereId(
$booking->service_type,
)->first();
@endphp
Trip Type:
{{ ucfirst($serviceType->name ?? 'N/A') }}
@if ($booking->service_type == 2)
No. of Hours:
{{ $booking->duration_in_hours }}
@endif
Ride Date & Time:
{{ getDateFormat($booking->pickup_date) }} -
{{ getTimeFormat($booking->pickup_time) }}
Let us know if you wish to proceed.
LOWEST RATES NO HIDDEN FEES NO MILEAGE FEES
FAST SERVICE
.
Feel free to ask if you have any questions. {{ $setting->company_email }}
or {{ $setting->company_phone }}
Thank you for choosing {{ $setting->company_name }}.
Regards,
{{ Auth::user()->name }}
{{ $setting->company_name }}
|