I have a data variable named $staff_id and I have a notice table in database, in table has a "can_see" column, this column contains data as an id string separated by commas, I want to get the rows has $staff_id of that string, i want to use the Laravel query builder and I don't want to use the Stored procedure.
DB::table('tasks')->where("staff_id in can_see column!!")->get();