@component('mail::message') # Quotation #{{ $quotation->id }} Hello {{ $customerName }}, We are pleased to send you our quotation for your travel inquiry. **Quotation Details:** - **Quotation ID:** #{{ $quotation->id }} - **Customer Name:** {{ $quotation->customer_name }} - **Email:** {{ $quotation->registered_email_address ?? 'N/A' }} - **Phone:** {{ $quotation->registered_phone ?? 'N/A' }} - **Number of Passengers:** {{ $quotation->number_of_passanger }} **Trip Information:** - **Product Type:** {{ $quotation->product_type ?? 'N/A' }} - **Origin:** {{ $quotation->origin_airport ?? 'N/A' }} - **Destination:** {{ $quotation->destination_airport ?? 'N/A' }} - **Quotation Date:** {{ $quotation->quotation_date->format('d M Y') }} - **Valid Until:** {{ $quotation->quotation_expiry_date?->format('d M Y') ?? 'Upon notice' }} **Total Price:** **{{ number_format($quotation->price['total'] ?? 0, 2) }}** --- Please find attached the detailed quotation PDF with complete itinerary, pricing breakdown, and terms & conditions. If you have any questions or would like to modify this quotation, please don't hesitate to contact us. @component('mail::button', ['url' => config('app.url')]) View Quotation @endcomponent Thank you for considering our services! Best regards, **{{ env('APP_NAME', 'ET-CRM') }} Team** @endcomponent