@extends('emails.partials.base_template') @section('title', 'Quote Rejected') @section('subtitle', 'A customer has rejected their quote - Review required') @section('content')
Hello Admin Team,
A customer has rejected their quote and provided feedback. Please review the details below and consider appropriate follow-up actions.
Quote Rejected! A customer has declined their quote. This requires immediate review and potential follow-up action.

Quote Information

Quote ID: #{{ $quote->id }}
Quote Price: ${{ number_format($quote->quote_price ?? 0, 2) }}
Created Date: {{ $quote->created_at->format('M d, Y H:i') }}
Rejection Date: {{ now()->format('M d, Y H:i') }}

Customer Information

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

Vehicle & Route Details

Vehicle: {{ $quote->vehicle_details ?? 'N/A' }}
Service Type: {{ ucfirst($quote->service_type ?? 'Standard Transport') }}
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
@if($quote->rejection_reason)

Customer's Reason for Rejection:

"{{ $quote->rejection_reason }}"

@else

Customer's Reason for Rejection:

No reason provided

@endif
Action Required: Please review this rejection and consider reaching out to the customer to understand their concerns or offer alternative solutions.
Recommended Follow-up Actions:
1. Analyze the rejection reason - Understand why the customer declined
2. Review pricing competitiveness - Check if the quote was competitive for the route
3. Consider alternative solutions - Offer different service options or pricing
4. Follow up with customer - Reach out to understand concerns and offer alternatives
5. Update pricing strategy - Use feedback to improve future quotes
Admin Panel: View Quote Details
Customer Contact: Consider reaching out to the customer to understand their concerns and potentially offer alternative solutions or pricing.
@endsection