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