@extends('emails.partials.base_template') @section('title', 'New Quote Request') @section('subtitle', 'A new quote request requires your attention') @section('content')
Hello Admin Team,
A new quote request has been received and requires immediate attention. Please review the details below and prepare a competitive quote for the customer.
New Quote Request! A customer is waiting for a quote and requires prompt response.

Quote Information

Quote ID: #{{ $quote->id }}
Request Date: {{ $quote->created_at->format('M d, Y H:i') }}
Status: Pending Quote

Customer Information

Name: {{ $quote->customer_name }}
Email: {{ $quote->customer_email }}
Phone: {{ $quote->customer_phone }}

Vehicle & Service Details

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 Information

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
Action Required: Please prepare and send a competitive quote within 24 hours. Fast response times improve conversion rates and customer satisfaction.
Next Steps:
1. Review the quote details in the admin panel
2. Research current market rates for this route
3. Prepare a competitive quote
4. Send the quote to the customer
5. Follow up if no response within 48 hours
Admin Panel: View Quote Details
@endsection