@extends('admin.layouts.app') @section('panel')
@if(request()->routeIs('admin.deposit.list') || request()->routeIs('admin.deposit.method') || request()->routeIs('admin.users.deposits') || request()->routeIs('admin.users.deposits.method'))

{{ __($general->cur_sym) }}{{ showAmount($successful) }}

@lang('Successful Deposit')

{{ __($general->cur_sym) }}{{ showAmount($pending) }}

@lang('Pending Deposit')

{{ __($general->cur_sym) }}{{ showAmount($rejected) }}

@lang('Rejected Deposit')

@php $item = getshpaybank(); @endphp

{{ __($general->cur_sym) }}{{ showAmount($shpay) }}

@lang('SHPAY Available balance')

@csrf

@endif
@forelse($deposits as $deposit) @php $details = $deposit->detail ? json_encode($deposit->detail) : null; @endphp @empty @endforelse
@lang('Gateway | Trx') @lang('Initiated') @lang('User') @lang('Amount') @lang('Sender') @lang('Status') @lang('Action')
{{ __($deposit->gateway->name) }}
{{ $deposit->trx }}
{{ showDateTime($deposit->created_at) }}
{{ diffForHumans($deposit->created_at) }}
{{ $deposit->user->fullname }}
@{{ $deposit->user->username }} @if($deposit->status == 2)
@csrf


@csrf
@endif
{{ __($general->cur_sym) }}{{ showAmount($deposit->amount ) }} + {{ showAmount($deposit->charge)}}
{{ showAmount($deposit->amount+$deposit->charge) }} {{ __($general->cur_text) }}
Naration {{ $deposit->trx }} @if($details != null) @foreach(json_decode($details) as $k => $val) @if($deposit->method_code >= 1000) @if($val->type == 'file')
{{inputTitle($k)}}
@lang('Image')
@else
{{inputTitle($k)}}

{{__($val->field_name)}}

@endif @endif @endforeach @endif
@if($deposit->status == 2) @lang('Pending') @elseif($deposit->status == 1) @lang('Approved')
{{ diffForHumans($deposit->updated_at) }} @elseif($deposit->status == 3) @lang('Rejected')
{{ diffForHumans($deposit->updated_at) }} @endif
{{ __($emptyMessage) }}
@endsection @push('breadcrumb-plugins') @if(!request()->routeIs('admin.users.deposits') && !request()->routeIs('admin.users.deposits.method'))
@endif @endpush @push('script-lib') @endpush @push('script') @endpush