@extends('emails.layout') @section('title', 'Payment Confirmed') @section('header_subtitle', 'Billing') @section('content')
Hi {{ $customer->name }}, we've received your payment for Invoice #{{ $invoice->invoice_number }}.
{{-- Amount highlight --}}Amount Paid
${{ number_format($payment->amount, 2) }}
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 }} |
| Status | PAID |
📦 Order update: Your order is confirmed and will be processed shortly. You'll receive installation schedule updates via email.
Thank you for choosing AFINET. If you have any questions, contact us at noc@afinet.africa.
@endsection