@extends('emails.layout') @section('title', 'Your Quotation is Ready') @section('content')

Hello {{ $quotation->customer->name }},

Great news! Your quotation for {{ $quotation->package->name }} is ready for review.

📋 Quotation Reference: {{ $quotation->reference }}
📅 Valid Until: {{ \Carbon\Carbon::parse($quotation->valid_until)->format('F j, Y') }}

Package Details

@if($quotation->extension_cost > 0) @endif
Package {{ $quotation->package->name }} ({{ $quotation->package->speed_mbps }}Mbps)
Monthly Subscription ${{ number_format($quotation->monthly_price, 2) }}/month
Installation Fee ${{ number_format($quotation->installation_fee, 2) }}
Infrastructure Extension ${{ number_format($quotation->extension_cost, 2) }}
Equipment Cost ${{ number_format($quotation->equipment_cost, 2) }}
Total Setup Cost ${{ number_format($quotation->total_amount, 2) }}
@if($quotation->extension_cost > 0)
⚠️ Extension Cost Notice:
Your location requires fibre infrastructure extension. The extension cost is subject to site survey confirmation.
@endif
View Full Quotation
📌 Next Steps:
1. Review the quotation details
2. Accept the quotation if you're happy with the terms
3. Complete KYC verification
4. Proceed to payment

This quotation is valid for 30 days. If you have any questions about the pricing or terms, please don't hesitate to contact our sales team.

Service Address: {{ $quotation->service_address }}

@endsection