I need some help to do this query in laravel.
Select id from tableone where id in (1,2,3,4,5)
The (1,2,3,4,5) must be a result from another query.
This >>> $s = TableOne::lists('id');
Result >>> ["4","14", "11", "1", "13", "3", "2"]
How do I do this?