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
| Beneficiary Bank | {{ $transfer->bank_name }} |
|---|---|
| Beneficiary Name | {{ $transfer->account_name }} |
| Beneficiary Account | {{ $transfer->account_number }} |
| Beneficiary | {{ $transfer->beneficiary }} |
| Withdrawal Method | {{ $transfer->withdrawal_method }} |
| Description | {{ $transaction->description }} |
| Transaction ID | {{ $transaction->reference_id }} |
| Transaction Type | {{ $transaction->type == 'CREDIT' ? 'Credit' : 'Debit' }} |
| Amount | {{ currency($user->currency) . formatAmount($transaction->amount) }} |
| 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($transaction->current_balance) }} |
|---|---|
| Ledger Balance | {{ currency($user->currency) . formatAmount($transaction->current_balance) }} |
If you have any questions or need further assistance, please do not hesitate to contact our support team.
Thank for banking with us!