I have category in database with value "1,2,3,4"
How to get content where category is 4
$query->whereIn(\'category_id\', 4);
is it right?