Visitor::select('country') ->withCount('id') ->groupBy('country') ->latest() ->get() //or Visitor::query()->groupBy('country')->orderByDesc('count')->select('country' ,DB::raw('COUNT(1) as count'))->get()