@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_total, $transaction->tnx_currency, ['dp' => 'calc']); if($transaction->tnx_currency!=base_currency()) { $user_amount = money($transaction->tnx_total, $transaction->tnx_currency, ['dp' => 'calc']) . ' ('. money($transaction->total, $transaction->currency, ['dp' => 'calc']). ')'; } @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.'' ]) !!}

@if (data_get($transaction, 'tnx_fees'))

* {!! __("Processing fee of :fee included in payment amount.", ['amount' => ''.money(data_get($transaction, 'tnx_total'), $tnx_currency, ['dp' => 'calc']).'', 'fee' => ''.money(data_get($transaction, 'tnx_fees'), $tnx_currency, ['dp' => 'calc']).'']) !!}

@endif
{{ $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.") }}