@extends('emails.partials.base_template') @section('title', 'Payment Required') @section('subtitle', 'Complete your booking payment to confirm your service') @section('content')
Hello {{ $user->name }},
Great news! Your quote has been accepted and your booking has been created successfully. However, we need you to complete the payment to confirm your vehicle transport service.
Payment Required! Your booking is pending payment completion. Please complete your payment to secure your transport service.
Amount Due
${{ number_format($quote->price, 2) }}
Payment required to confirm booking

Booking Details

Quote ID: #{{ $quote->id }}
Vehicle: @if(is_array($quote->vehicle_info)) {{ $quote->vehicle_info['year'] ?? '' }} {{ $quote->vehicle_info['make'] ?? '' }} {{ $quote->vehicle_info['model'] ?? '' }} @else {{ $quote->vehicle_info ?? 'N/A' }} @endif
Pickup Location: @if(is_array($quote->pickup_location)) {{ $quote->pickup_location['address'] ?? '' }}, {{ $quote->pickup_location['city'] ?? '' }}, {{ $quote->pickup_location['state'] ?? '' }} @else {{ $quote->pickup_location ?? 'N/A' }} @endif
Delivery Location: @if(is_array($quote->delivery_location)) {{ $quote->delivery_location['address'] ?? '' }}, {{ $quote->delivery_location['city'] ?? '' }}, {{ $quote->delivery_location['state'] ?? '' }} @else {{ $quote->delivery_location ?? 'N/A' }} @endif
Pickup Date: {{ $quote->pickup_date ?? 'To be scheduled' }}
Pickup Time: {{ $quote->pickup_time ?? 'To be scheduled' }}

Payment Information

Amount Due: ${{ number_format($quote->price, 2) }}
Payment Status: PENDING
Payment Method: Credit/Debit Card
Complete Payment Now
Need Help with Payment? If you need assistance with payment or want to use a different payment gateway, please contact us through our live chat support. Our team is available 24/7 to help you.

Next Steps

  1. Click Payment Button: Use the "Complete Payment Now" button above
  2. Log In: Access your user panel with your credentials
  3. Navigate to Bookings: Go to "My Bookings" section
  4. Update Payment Info: Add or update your payment card information
  5. Complete Payment: Process the payment for your booking
Important: Once payment is completed, your booking will be confirmed and we'll begin processing your vehicle transport service. Please complete your payment as soon as possible to secure your transport slot.
Questions? If you have any questions or need assistance, please don't hesitate to contact us through our live chat support or at {{ $companySettings['companyPhone'] }}.
Thank you for choosing {{ $companySettings['companyName'] }} for your vehicle transportation needs!
@endsection