Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
LaravelのELOQUENT ORMで結果を「制限」する方法はありますか?
SELECT * FROM `games` LIMIT 30 , 30
そして雄弁で?
Eloquentを拡張するゲームモデルを作成し、これを使用します。
Game::take(30)->skip(30)->get();
take()ここでは30レコードを取得し、skip()ここでは30レコードにオフセットします。
take()
skip()
最近のLaravelバージョンでは、次のものも使用できます。
Game::limit(30)->offset(30)->get();