Logo

Dear {{ $user->first_name . ' ' . $user->last_name }},

We are pleased to inform you that your {{ $transaction['type'] == 'CREDIT' ? 'credit' : 'debit' }} transaction has been successfully completed. Below are the details of your transaction:

Transaction Details

Transaction ID {{ $transaction['reference_id'] }}
Transaction Type {{ $transaction['type'] == 'CREDIT' ? 'Credit' : 'Debit' }}
Amount {{ currency($user->currency) . formatAmount($transaction['amount']) }}
Description {{ $transaction['description'] }}
Date {{ date('dS M Y', strtotime($transaction['date'])) }}
Status {{ $transaction['status'] == 1 ? 'Successful' : 'Failed' }}

Following this transaction, the balances on your account are as follows:

{{-- --}}
Available Balance {{ currency($user->currency) . formatAmount($user->balance) }}
Ledger Balance {{ currency($user->currency) . formatAmount($user->balance) }}

If you have any questions or need further assistance, please do not hesitate to contact our support team.

Thank for banking with us!