@extends('layouts.admin') @section('content')
Current Wallets
Filter By Month:
{{-- Tab-1 --}}
{{-- Eshra7ly Transactions --}}

Current Wallets List

@if ($current_wallets->count() > 0)
@endif
@forelse ($current_wallets as $key=>$item) @empty @endforelse
id Amount EGP Amount AED date Created_at
{{ ++$key }} {{ $item->amount }} {{ $item->amount_aed ? $item->amount_aed : 0}} {{ $item->date}} {{$item->created_at}}
empty table

There is no data!

{{-- @endif --}}
@endsection