@extends($activeTemplate . 'layouts.master') @section('content')
@if (!blank($deposits))
@forelse($deposits as $deposit)

  • @lang('Conversion') 1 {{ __(gs('cur_text')) }} = {{ showAmount($deposit->rate) }} {{ __($deposit->method_currency) }}
    {{ showAmount($deposit->final_amount) }} {{ __($deposit->method_currency) }}
  • @lang('Status') @php echo $deposit->statusBadge @endphp
  • @lang('Action') @php $details = $deposit->detail != null ? json_encode($deposit->detail) : null; @endphp
@endforeach
@if ($deposits->hasPages())
{{ paginateLinks($deposits) }}
@endif
@else @include($activeTemplate . 'partials.empty', ['message' => 'Deposit not found!']) @endif
{{-- Details MODAL --}} @endsection @push('style-lib') @endpush @push('script-lib') @endpush @push('script') @endpush @push('style') @endpush