@extends('layouts.site') @section('title', 'Quote Submitted โ€” ' . $quote->quote_number . ' โ€” pcfy.in') @section('screen_label', 'Quote Confirmation') @section('page_css') @endsection @section('content')

Quote Submitted!

Thank you, {{ $quote->customer_name }}! We've received your request and will get back to you within 24 hours.

Your Quote Reference
{{ $quote->quote_number }}
Save this number to track your quote status
What happens next?
@foreach([ ['๐Ÿ“ง', 'Confirmation email sent', "We've sent a confirmation to {$quote->customer_email} with your quote details."], ['๐Ÿ”', 'Our team reviews your request', 'We check availability, grade and stock for all your requested items within 24 hours.'], ['๐Ÿ’ฐ', 'You receive a detailed quote', 'We\'ll email you with itemised pricing, lead time, and payment options.'], ['โœ…', 'Confirm & we dispatch', 'Once you approve, we process your order and dispatch within 24 hours.'], ] as [$icon, $title, $desc])
{{ $icon }}
{{ $title }}
{{ $desc }}
@endforeach
@if($quote->items->count())
Items in your quote ({{ $quote->items->count() }})
@foreach($quote->items as $item)
{{ $item->product_name }}
Grade {{ $item->grade }}@if($item->product_sku) ยท {{ $item->product_sku }}@endif
Qty: {{ $item->quantity }}
@endforeach
Pricing will be confirmed by our team within 24 hours.
@endif
Continue browsing โ†’ Back to homepage
Need urgent help? Call us at +91 98765 43210 or WhatsApp us at wa.me/919876543210 โ€” mention your quote number {{ $quote->quote_number }}.
@endsection