@extends('emails.layout') @section('title', 'Quotation Status Update') @section('header_subtitle', 'Quotations') @section('content')

Quotation Status Update 🔔

Hi {{ $quotation->customer->name }}, the status of your quotation has been updated.

{{-- Status change --}}

Status Change

{{ ucfirst($oldStatus) }} {{ ucfirst($newStatus) }}
{{-- Quotation details --}}

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' }}
@if($newStatus === 'sent')

✓ Quotation ready: Please review the details and let us know if you'd like to proceed.

@elseif($newStatus === 'approved')

✓ Quotation approved: We'll proceed with creating your order shortly.

@elseif($newStatus === 'declined')

✗ Quotation declined: Please feel free to request a new quotation or contact our sales team for alternatives.

@elseif($newStatus === 'expired')

⚠ Quotation expired: Please request a new quotation if you're still interested in our services.

@endif
View Quotation →

Questions? Contact our sales team at sales@afinet.africa.

@endsection