@extends('emails.partials.base_template') @section('title', 'Your Quote is Ready!') @section('subtitle', 'We have prepared a competitive quote for your vehicle transport') @section('content')
Hello {{ $quote->customer_name }},
Great news! We have prepared a competitive quote for your vehicle transport request. Our team has analyzed your specific route and vehicle requirements to provide you with the best possible pricing.
Your Quote is Ready! We've prepared a competitive quote based on your specific requirements and current market rates.
Your Quote Price
${{ number_format($quote->quote_price, 2) }}
All-inclusive pricing • No hidden fees

Quote Details

Quote ID: #{{ $quote->id }}
Vehicle: @if(is_array($quote->vehicle_info)) {{ trim(($quote->vehicle_info['year'] ?? '') . ' ' . ($quote->vehicle_info['make'] ?? '') . ' ' . ($quote->vehicle_info['model'] ?? '')) ?: 'N/A' }} @else {{ $quote->vehicle_info ?? 'N/A' }} @endif
Service Type: {{ ucfirst($quote->service_type ?? 'Standard Transport') }}
Pickup Location: @if(is_array($quote->pickup_location)) @php $pickupParts = array_filter([ $quote->pickup_location['address'] ?? '', $quote->pickup_location['city'] ?? '', $quote->pickup_location['state'] ?? '' ]); @endphp {{ implode(', ', $pickupParts) ?: 'N/A' }} @else {{ $quote->pickup_location ?? 'N/A' }} @endif
Delivery Location: @if(is_array($quote->delivery_location)) @php $deliveryParts = array_filter([ $quote->delivery_location['address'] ?? '', $quote->delivery_location['city'] ?? '', $quote->delivery_location['state'] ?? '' ]); @endphp {{ implode(', ', $deliveryParts) ?: 'N/A' }} @else {{ $quote->delivery_location ?? 'N/A' }} @endif

What's Included

Accept Quote Reject Quote
Quote Expiration: This quote is valid for 7 days. Please make your decision soon to secure this competitive pricing.
Need More Information?
You can view your complete quote details and make your decision by clicking the buttons above or visiting: View Quote Details
Questions About This Quote?
If you have any questions about this quote, pricing, or our services, please don't hesitate to contact us at {{ $companySettings['companyPhone'] }} or {{ $companySettings['companyEmail'] }}. Our team is here to help!
Thank you for considering {{ $companySettings['companyName'] }} for your vehicle transportation needs. We look forward to providing you with excellent service!
@endsection