@extends('emails.layout') @section('title', 'New Quotation Request') @section('header_subtitle', 'Sales Notification') @section('content')

New Quotation Request 📋

A new quotation request has been submitted through the customer portal and requires your review.

Ref: {{ $quotation->reference }}  ·  Status: {{ ucfirst($quotation->status) }}  ·  Submitted: {{ $quotation->created_at->format('d M Y, g:i A') }}

Customer

Name{{ $customer->name }}
Email{{ $customer->email }}
Phone{{ $customer->phone }}
Customer ID#{{ $customer->id }}

Service Details

@if($quotation->extension_cost > 0) @endif @if($quotation->equipment_cost > 0) @endif
Package{{ $quotation->package->name ?? 'Custom Package' }}
Service Address{{ $quotation->service_address ?? 'Not specified' }}
Monthly Price${{ number_format($quotation->monthly_price, 2) }}/month
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) }}
@if($quotation->notes)

Customer Notes

{{ $quotation->notes }}

@endif

⚠️ Action Required: Please review this quotation and contact the customer within 24 hours.

View in Admin Panel →
@endsection