@lang('Deposit Info')
@php echo $deposit->statusBadge @endphp
-
@lang('TRX No.')
#{{ $deposit->trx }}
-
@lang('Amount')
{{ showAmount($deposit->amount) }}
-
@lang('Charge')
{{ showAmount($deposit->charge) }}
-
@lang('After Charge')
{{ showAmount($deposit->amount + $deposit->charge) }}
-
@lang('Conversion Rate')
1 {{ __(gs()->cur_text) }} = {{ showAmount($deposit->rate, currencyFormat: false) }} {{ __($deposit->method_currency) }}
-
@lang('After Convert')
{{ showAmount($deposit->final_amount, currencyFormat: false) }} {{ __($deposit->method_currency) }}
-
@lang('Created At')
{{ showDateTime($deposit->created_at) }}
-
@if ($deposit->branch)
@lang('Branch')
{{ __(@$deposit->branch->name) }}
@else
@lang('Gateway')
{{ __(@$deposit->gateway->name) }}
@endif