@extends('emails.layout') @section('title', 'Payment Approved') @section('header_subtitle', 'Billing') @section('content')
Hi {{ $payment->customer->name }}, your payment has been verified and approved by our finance team.
Amount Approved
${{ number_format($payment->amount, 2) }}
Ref: {{ $payment->payment_reference }}
Payment Details
| Reference | {{ $payment->payment_reference }} |
| Method | {{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }} |
| Payment Date | {{ $payment->created_at->format('d M Y') }} |
| Approved Date | {{ now()->format('d M Y') }} |
| Invoice # | {{ $invoice->invoice_number }} |
| Invoice Status | PAID |
What's next?
✓ Your service will be activated as per the installation schedule
✓ Our technical team will contact you to confirm the installation date
✓ A receipt is available in your account dashboard
Thank you for your payment and for choosing AFINET!
@endsection