@extends('layouts.admin') @section('content')
Current Wallet Transfer

List

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

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

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