{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} {{-- --}} @foreach ($walletchargerequests as $request) {{-- --}} @endforeach
{{ __('admin.user_type') }} {{ __('admin.user_name') }}{{ __('admin.amount') }}{{ __('admin.status') }} {{ __('admin.created_at') }} {{ __('admin.control') }}
@if($request->wallet->walletable_type == 'App\Models\Client') {{ __('admin.client') }} @else {{ __('admin.unknown') }} @endif {{ $request->wallet->walletable->name ?? __('admin.unknown') }}{{ $request->amount }} {{ __('site.currency') }} @if ($request->status == 'pending') {{ __('admin.pending') }} @elseif ($request->status == 'approved') {{ __('admin.approved') }} @else {{ __('admin.rejected') }} @endif {{ $request->created_at->format('Y-m-d H:i') }} @if($request->status == 'pending') @endif
{{-- table content --}} {{-- no data found div --}} @if ($walletchargerequests->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($walletchargerequests->count() > 0 && $walletchargerequests instanceof \Illuminate\Pagination\AbstractPaginator )
{{$walletchargerequests->links('pagination::bootstrap-4')}}
@endif {{-- pagination links div --}}