在Laravel 4中,我想要返回兩個部分的對象:前5個和其餘部分。我已經試過如下:如何正確採取和跳過Laravel 4
$firstFive = Category::take(5)->get(); // this works.
$theRest = Category::skip(5)->take(5)->get(); // this works
$theRest = Category::take('THE REST')->skip(5)->get(); // of course not working
我知道我可以只是在採取(),以獲得他們的休息進入一個很大的數字,但有這需要的對象的完全休息的方法嗎?
真的很翔實。非常感謝! – JustinHo
很高興這是有益的和歡迎:-) –