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

Payment Confirmed! 💳

Hi {{ $payment->customer->name }}, we've successfully received your payment. Thank you for choosing AFINET!

Amount Paid

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

Payment Details

Transaction Ref{{ $payment->transaction_reference }}
Method{{ $payment->payment_method }}
Currency{{ $payment->currency }}
Date{{ $payment->created_at->format('d M Y, g:i A') }}
StatusCOMPLETED
@if($payment->salesOrder)

Order Information

Order Number{{ $payment->salesOrder->order_number }}
Package{{ $payment->salesOrder->package->name }}
Monthly${{ number_format($payment->salesOrder->monthly_subscription, 2) }}/month
@endif

📧 Receipt: A detailed receipt is attached to this email for your records. Your order is now being processed — you'll receive installation schedule updates soon.

View Payment History →

Questions? Contact billing at billing@afinet.africa

@endsection