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

Your Quotation is Ready, {{ $quotation->customer->name }}!

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

{{-- Reference badge --}}

๐Ÿ“‹ Ref: {{ $quotation->reference }}  ยท  Valid until: {{ \Carbon\Carbon::parse($quotation->valid_until)->format('d M Y') }}

{{-- Package details --}}

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 {{-- Next steps --}}

๐Ÿ“Œ 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

View Full Quotation →

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

@endsection