$getUserCountries = User::select('country', DB::raw('count(*) as count'))
->groupBy('country')
->get()->
toArray();
$user_info = Usermeta::groupBy('browser')->select('browser', DB::raw('count(*) as total'))->get();