Laravel 中 offset,limit 或 skip , take 的使用

james_xue發表於2018-08-10

laravel 本身有一個自帶的快速分頁方法 paginate,只需要傳入每頁顯示多少條資料就可以 了,但是如果想使用自定義從哪裡開始呢。

一、offset,limit (offset 設定從哪裡開始,limit 設定想要查詢多少條資料)

Model::offset(0)->limit(10)->get();

二、skip,take (sikip 跳過幾條,take取多少條資料)

Model::skip(3)->take(3)->get();

不要輕易放棄。學習成長的路上,我們長路漫漫,只因學無止境

Don't give up easily. On the way of learning and growing up, we have a long way to go, just because there is no end to learning.

相關文章