@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
{!! __('Withdraw ID# :orderid', ['type'=> $type, 'orderid' => ''.the_tnx($transaction->tnx).'' ]) !!}

{!! __("User (:name) request to withdraw :amount via :Method. Please send the payment to user account and complete the withdraw.", ['method' => ''.$transaction->method_name.'', 'amount' => ''.$user_amount.'', 'name' => ''.the_uid($transaction->customer->id).'' ]) !!}

{{ __('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.') }}

{!! __("Confirm that you've paid and want to COMPLETED this :type request.", ['type' => ''.strtoupper($type).'']) !!}