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

Quotation Accepted! 🎉

A customer has accepted their quotation and is ready to proceed with the order.

Quotation Value

${{ number_format($quotation->total_amount, 2) }}

Ref: {{ $quotation->reference }}

Customer

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

Order 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) }}
Accepted On{{ $quotation->responded_at ? $quotation->responded_at->format('d M Y, g:i A') : now()->format('d M Y, g:i A') }}

⚠️ Action Required — Process within 24 hours

1.  Create Sales Order in Odoo (if not auto-created)

2.  Generate invoice for the customer

3.  Schedule installation based on customer preferences

4.  Contact customer to confirm installation date

Process Order →
@endsection