@lang("Deposit History")
@lang("Deposit History")
@lang("Transaction ID") | @lang("Gateway") | @lang("Amount") | @lang("Charge") | @lang("Status") | @lang("Time & Date") |
---|---|---|---|---|---|
{{ '#' . $deposit->trx_id }} | @lang(optional($deposit->gateway)->name) | @if(auth()->user()->currency) {{ currencyPositionBySelectedCurrency($deposit->payable_amount_in_base_currency * $currency->conversion_rate, auth()->user()->currency) }} @else {{ currencyPosition($deposit->payable_amount_in_base_currency) }} @endif | @if(auth()->user()->currency) {{ currencyPositionBySelectedCurrency($deposit->base_currency_charge * $currency->conversion_rate, auth()->user()->currency) }} @else {{ currencyPosition($deposit->base_currency_charge) }} @endif | @if($deposit->status == 1) @lang('Complete') @elseif($deposit->status == 2) @lang('Pending') @elseif($deposit->status == 3) @lang('Cancel') @endif | {{ dateTime($deposit->created_at) }} |
@lang("The deposit is not available.")