@extends(template().'layouts.user') @section('title',trans('Deposit History')) @section('content')

@lang("Deposit History")

@lang("Deposit History")

@if(count($deposits) > 0)
@forelse($deposits as $deposit) @empty @endforelse
@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) }}
@else
Image Description

@lang("The deposit is not available.")

@endif
@lang("Deposit Filter")
@endsection @push('panel-user-script') @endpush