Hello AFINET Team,
A new quotation request has been submitted through the customer portal.
Quotation Reference: {{ $quotation->reference }}
Status: {{ ucfirst($quotation->status) }}
Submitted: {{ $quotation->created_at->format('F j, Y g:i A') }}
Status: {{ ucfirst($quotation->status) }}
Submitted: {{ $quotation->created_at->format('F j, Y g:i A') }}
Customer Information
| Name: | {{ $customer->name }} |
| Email: | {{ $customer->email }} |
| Phone: | {{ $customer->phone }} |
| Customer ID: | {{ $customer->id }} |
Service Details
| Package: | {{ $quotation->package->name ?? 'Custom Package' }} |
| Service Address: | {{ $quotation->service_address ?? 'Not specified' }} |
| Monthly Price: | ${{ number_format($quotation->monthly_price, 2) }} |
| Installation Fee: | ${{ number_format($quotation->installation_fee, 2) }} |
| Extension Cost: | ${{ number_format($quotation->extension_cost, 2) }} |
| Equipment Cost: | ${{ number_format($quotation->equipment_cost, 2) }} |
| Total Amount: | ${{ number_format($quotation->total_amount, 2) }} |
Customer Notes
{{ $quotation->notes }}
@endif
@if($quotation->installation_preferences)
Installation Preferences
@foreach($quotation->installation_preferences as $key => $value)
{{ ucfirst(str_replace('_', ' ', $key)) }}: {{ $value }}
@endforeach
@endif
@endforeach
⚠️ Action Required: Please review this quotation and contact the customer within 24 hours.