@php use \App\Enums\TransactionType; use \App\Enums\TransactionStatus; $amount = $transaction->amount; $currency = $transaction->currency; $tnx_amount = $transaction->tnx_amount; $tnx_currency = $transaction->tnx_currency; $user_amount = money($transaction->tnx_amount, $transaction->tnx_currency); if($transaction->tnx_currency!=base_currency()) { $user_amount = money($transaction->tnx_amount, $transaction->tnx_currency) . ' ('. money($transaction->amount, $transaction->currency). ')'; } @endphp
{!! __('Deposit ID# :orderid', ['orderid' => ''.the_tnx($transaction->tnx).'' ]) !!}

{!! __("The amount of :amount to :type via :Method.", ['type' => ''.ucfirst($type).'', 'method' => $transaction->method_name, 'amount' => ''.$user_amount.'' ]) !!}

{{ $tnx_currency }}
{{ __('The payment amount that you received.') }}
{{ $currency }}
{{ __('The amount that ajdust with balance.') }}
{{ __('The reference will display to user.') }}
{{ __('Helps to identify the payment (Admin).') }}
{{ __('The note or remarks help to reminder. Only administrator can read from transaction details.') }}

{!! __("Please confirm that you want to APPROVE this :type request.", ['type' => ''.strtoupper($type).'']) !!}

  • {{ __("The deposit amount will adjust into user account once you approved.") }}

  • {{ __("You can not undo this action once you you confirm and approved.") }}