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

Payment Received 💰

A payment has been received from a customer and requires your attention.

{{-- Amount highlight --}}

Payment Amount

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

Ref: {{ $payment->payment_reference }}

{{-- Customer info --}}

Customer

Name{{ $customer->name }}
Email{{ $customer->email }}
Phone{{ $customer->phone }}
{{-- Payment details --}}

Payment Details

@if($payment->pesepay_reference) @endif
Reference{{ $payment->payment_reference }}
Method{{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }}
Amount${{ number_format($payment->amount, 2) }}
Date{{ $payment->created_at->format('d M Y, g:i A') }}
Invoice #{{ $invoice->invoice_number }}
Status{{ ucfirst($payment->status) }}
Pesepay Ref{{ $payment->pesepay_reference }}
@if($payment->payment_method === 'bank_transfer')

⚠️ Bank Transfer — Verification Required

Please verify the proof of payment and approve in the system.

@else

✓ Pesepay — Auto-Verified. This payment has been automatically verified.

@endif
View Payment →
@endsection