@extends('layouts.admin') @section('content')
Total Wallets Details

Wallets List

{{-- Export btn --}} @if (count($total_wallets) > 0) @if ($total_wallets->total() >10000) @else
@endif @endif
@php $count=0 @endphp @foreach ($total_wallets as $item) @endforeach
Id Name Wallet EGP Wallet AED
{{++$count}} {{$item->first_name.' '.$item->middle_name.' '.$item->last_name}} {{$item->wamount}} {{$item->wamount_aed}}
{{ $total_wallets->appends(Request::except('page'))->render('inc.paginate') }}

Displaying {{$total_wallets->count()}} of {{ $total_wallets->total() }} transaction(s).

@endsection @section('admin-js') @endsection