Is there a way to \"limit\" the result with ELOQUENT ORM of Laravel?
SELECT * FROM `games` LIMIT 30 , 30
And with Eloquent ?
We can use LIMIT like bellow:
Model::take(20)->get();