@extends('emails.layout') @section('title', 'Payment Received') @section('content')

Payment Confirmed! 💳

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

✅ Payment Successful!
Transaction Reference: {{ $payment->transaction_reference }}
Payment Date: {{ $payment->created_at->format('F j, Y \a\t g:i A') }}

Payment Details

Amount Paid ${{ number_format($payment->amount, 2) }}
Payment Method {{ $payment->payment_method }}
Currency {{ $payment->currency }}
Status COMPLETED
@if($payment->salesOrder)

Order Information

Order Number {{ $payment->salesOrder->order_number }}
Package {{ $payment->salesOrder->package->name }}
Monthly Subscription ${{ number_format($payment->salesOrder->monthly_subscription, 2) }}/month
@endif
View Payment History
📧 Receipt: A detailed receipt has been attached to this email for your records. Please keep it for future reference.

Your order is now being processed. You'll receive updates on the installation schedule soon.

If you have any questions about this payment, please contact our billing department at billing@afinet.com

@endsection