@extends('emails.layout') @section('title', 'Payment Confirmed') @section('header_subtitle', 'Billing') @section('content')

Payment Confirmed ✓

Hi {{ $customer->name }}, we've received your payment for Invoice #{{ $invoice->invoice_number }}.

{{-- Amount highlight --}}

Amount Paid

${{ number_format($payment->amount, 2) }}

{{-- Payment details --}}

Payment Details

Reference{{ $payment->payment_reference }}
Method{{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }}
Date{{ $payment->processed_at->format('d M Y, g:i A') }}
Invoice #{{ $invoice->invoice_number }}
StatusPAID
@if($payment->sales_order_id)

📦 Order update: Your order is confirmed and will be processed shortly. You'll receive installation schedule updates via email.

@endif
View Invoice →

Thank you for choosing AFINET. If you have any questions, contact us at noc@afinet.africa.

@endsection