Can you limit an Eloquent ORM query like using take() and skip() so that the resulting mysql query is also limited, and it doesn\'t
take()
skip()
User::find(1)->games()->take(3)->skip(2)->get();
I think this should give you your collection. :)
->games will give you a collection, where ->games() will offer a query builder instance.
->games
->games()
Enjoy Laravel!