la colonna di cui hai bisogno dovrebbe essere all'interno di selectRaw, come:
$topsearches = DB::table('searchkeywords')
->selectRaw('query,id,created,count(*) as count')
->havingRaw('count(*) > 3')
->orderBy('created', 'DESC')
->groupBy('query')
->paginate(15);