{{ config('app.name') }}
Secure payment link
Merchant
{{ $tx->merchant?->company_name ?: ($tx->merchant?->name ?: 'Merchant') }}
Amount
₦{{ formatNumber(($tx->amount ?? 0) / 100) }}
Reference: {{ $tx->reference }}
@if($tx->status === 'success')
Payment already completed.
@elseif(in_array($tx->status, ['failed','closed'], true))
This payment link is no longer available.
@else
Pay Now
@endif
Powered by {{ config('app.name') }}