The SQL statement below returns the right result, however I am having trouble converting this to Laravel and finding the right way to code Count(*) >=2 .
SELECT `column_id`
FROM `table`
WHERE `game_id`
IN ( 13, 14 )
GROUP BY `column_id`
HAVING COUNT( * ) >=2