Is there a way to \"limit\" the result with ELOQUENT ORM of Laravel?
SELECT * FROM `games` LIMIT 30 , 30
And with Eloquent ?
If you're looking to paginate results, use the integrated paginator, it works great!
$games = Game::paginate(30); // $games->results = the 30 you asked for // $games->links() = the links to next, previous, etc pages