@extends('emails.partials.base_template') @section('title', 'Final Payment Required') @section('subtitle', 'Your vehicle transport service is complete - Final payment due') @section('content')
Hello {{ $user->name }},
Great news! Your vehicle transport service has been completed successfully. Your vehicle has been delivered to the destination as scheduled.
Service Completed! Your vehicle transport service has been finished. Please complete the final payment to finalize your booking.
Final Payment Due
${{ number_format($finalPaymentAmount, 2) }}
Final payment for completed service

Booking Details

Booking ID: #{{ $booking->id }}
Vehicle: @if(is_array($booking->vehicle_info)) {{ $booking->vehicle_info['year'] ?? '' }} {{ $booking->vehicle_info['make'] ?? '' }} {{ $booking->vehicle_info['model'] ?? '' }} @else {{ $booking->vehicle_info ?? 'N/A' }} @endif
Pickup Location: @if(is_array($booking->pickup_location)) {{ $booking->pickup_location['address'] ?? '' }}, {{ $booking->pickup_location['city'] ?? '' }}, {{ $booking->pickup_location['state'] ?? '' }} @else {{ $booking->pickup_location ?? 'N/A' }} @endif
Delivery Location: @if(is_array($booking->delivery_location)) {{ $booking->delivery_location['address'] ?? '' }}, {{ $booking->delivery_location['city'] ?? '' }}, {{ $booking->delivery_location['state'] ?? '' }} @else {{ $booking->delivery_location ?? 'N/A' }} @endif
Service Date: {{ $booking->pickup_date ? $booking->pickup_date->format('M d, Y') : 'N/A' }}
Service Status: COMPLETED

Payment Information

Final Amount Due: ${{ number_format($finalPaymentAmount, 2) }}
Payment Status: PENDING
Payment Method: Credit/Debit Card
Pay Final Amount Now
Service Complete! Your vehicle has been successfully transported and delivered. Please complete the final payment to close your booking and receive your receipt.

Next Steps

  1. Click Payment Button: Use the "Pay Final Amount Now" button above
  2. Log In: Access your user panel with your credentials
  3. Navigate to Bookings: Go to "My Bookings" section
  4. Complete Final Payment: Process the final payment for your completed service
  5. Receive Receipt: Get your final receipt and booking confirmation
Important: This is the final payment for your completed vehicle transport service. Once payment is completed, your booking will be fully closed and you'll receive your final receipt.
Questions? If you have any questions about your completed service or need assistance with payment, 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