🔔

Quotation Status Update

{{ $quotation->reference }}

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

The status of your quotation has been updated.

Status Change

{{ ucfirst($oldStatus) }} {{ ucfirst($newStatus) }}

Quotation Details

Reference: {{ $quotation->reference }}
Package: {{ $quotation->package->name ?? 'Custom Package' }}
Monthly Price: ${{ number_format($quotation->monthly_price, 2) }}
Total Amount: ${{ number_format($quotation->total_amount, 2) }}
Valid Until: {{ $quotation->valid_until ? $quotation->valid_until->format('F j, Y') : 'N/A' }}
@if($newStatus === 'sent')
✓ Quotation Ready
Your quotation has been prepared and is ready for your review. Please review the details and let us know if you'd like to proceed.
@elseif($newStatus === 'approved')
✓ Quotation Approved
Great news! Your quotation has been approved. We'll proceed with creating your order shortly.
@elseif($newStatus === 'declined')
✗ Quotation Declined
We're sorry to hear that this quotation doesn't meet your needs. Please feel free to request a new quotation or contact our sales team for alternatives.
@elseif($newStatus === 'expired')
⚠ Quotation Expired
This quotation has expired. Please request a new quotation if you're still interested in our services.
@endif
View Quotation

If you have any questions about this update, please don't hesitate to contact us.

Best regards,
The AFINET Team