laravel 4 – how to Limit (Take and Skip) for Eloquent ORM?

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.

Enjoy Laravel!