@extends('emails.layout') @section('title', 'Quotation Status Update') @section('header_subtitle', 'Quotations') @section('content')
Hi {{ $quotation->customer->name }}, the status of your quotation has been updated.
{{-- Status change --}}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) }}/month |
| Total Amount | ${{ number_format($quotation->total_amount, 2) }} |
| Valid Until | {{ $quotation->valid_until ? $quotation->valid_until->format('d M Y') : 'N/A' }} |
✓ Quotation ready: Please review the details and let us know if you'd like to proceed.
✓ Quotation approved: We'll proceed with creating your order shortly.
✗ Quotation declined: Please feel free to request a new quotation or contact our sales team for alternatives.
⚠ Quotation expired: Please request a new quotation if you're still interested in our services.
Questions? Contact our sales team at sales@afinet.africa.
@endsection