Solution:
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!