@extends('emails.partials.base_template')
@section('title', 'Quote Request Received')
@section('subtitle', 'We are processing your vehicle transport quote')
@section('content')
Hello {{ $quote->customer_name }},
Thank you for choosing {{ $companySettings['companyName'] }}! We've received your quote request and our experienced team is working on providing you with a competitive and accurate quote.
Quote Request Confirmed! Your request has been received and is being processed by our pricing team.
Quote Information
Quote ID:
#{{ $quote->id }}
Request Date:
{{ $quote->created_at->format('F j, Y g:i A') }}
Status:
Under Review
Vehicle Information
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
@if(is_array($quote->vehicle_info) && isset($quote->vehicle_info['color']))
Color:
{{ $quote->vehicle_info['color'] }}
@endif
@if(is_array($quote->vehicle_info) && isset($quote->vehicle_info['condition']))
Condition:
{{ ucfirst($quote->vehicle_info['condition']) }}
@endif
Service Type:
{{ ucfirst($quote->service_type ?? 'Standard Transport') }}
Route Details
Pickup Location:
@if(is_array($quote->pickup_location))
{{ $quote->pickup_location['address'] ?? '' }}, {{ $quote->pickup_location['city'] ?? '' }}, {{ $quote->pickup_location['state'] ?? '' }} {{ $quote->pickup_location['zipCode'] ?? '' }}
@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'] ?? '' }} {{ $quote->delivery_location['zipCode'] ?? '' }}
@else
{{ $quote->delivery_location ?? 'N/A' }}
@endif
What Happens Next?
- Route Analysis: Our team is analyzing your specific route and distance
- Market Research: We're checking current market rates for your route
- Quote Preparation: Our pricing team is preparing your competitive quote
- Quality Review: All quotes are reviewed for accuracy and competitiveness
- Quote Delivery: You'll receive your quote within 24 hours
Fast Response Guarantee: We'll get back to you with a competitive quote within 24 hours.
Most quotes are delivered within 2-4 hours during business hours.
Need Immediate Assistance?
If you have any questions about your quote request or need to make changes, please don't hesitate to contact us at {{ $companySettings['companyPhone'] }} or {{ $companySettings['companyEmail'] }}.
Thank you for considering {{ $companySettings['companyName'] }} for your vehicle transportation needs.
We look forward to providing you with an excellent quote and service!
@endsection