@extends("admin.admin_app") @section("content")
@if(Auth::User()->usertype=="Admin")

{{trans('words.top_country')}}

{{trans('words.based_on_30_days')}}

@foreach($top_country as $country_data)

 {{$country_data->country}} {{number_format_short($country_data->count_row)}}

@endforeach

{{trans('words.latest_reports')}}

@foreach($reports_list as $reports_data) @endforeach
  {{trans('words.name')}} {{trans('words.message')}} Date  
@if(isset(\App\User::getUserInfo($reports_data->user_id)->user_image)) @else @endif

{{\App\User::getUserFullname($reports_data->user_id)}}

{{Str::limit($reports_data->message,70)}}

{{ date('m-d-Y h:i a',$reports_data->date) }}
@else @endif
@include("admin.copyright")
@endsection