@php use App\Models\Operator; @endphp @extends(Auth::user()->extender()) @section('title'){{__('Report')}} {{ __('Top Operators') }} @endsection @section('content') @include('includes.page_header',['title'=>__('Report')." ". __('Top Operators'),'url'=>route(Auth::user()->user_dashboard()),'icon' => $icon??'','permission'=>'PriorityRoute-view'])
@include('admin.others.infyomincludes.filter_index_js')
@forelse ($topOperators as $key=>$trx_operator) @php $operator = Operator::where('id',$key)->get()->first(); @endphp @if ($operator) @endif @empty {{-- --}} @endforelse
# ID Name Country Count Amount
{{$key}} {{$operator->vivape_id??''}} {{$operator->name??''}} {{$operator->country->country_name??''}} {{$trx_operator['count']??''}} {{$trx_operator['total_amount']??''}}
No users found
@endsection