Laravel 5 - Manual pagination

后端 未结 7 1596
情书的邮戳
情书的邮戳 2020-11-30 09:05

Pagination::make() method doesn\'t exist in Pagination class anymore in Laravel 5.

Is there a workaround to make manual pagination work in Laravel 5?

7条回答
  •  孤城傲影
    2020-11-30 10:01

    You can create manual pagination like this

    $data = DB::table('post')->skip(0)->take(20)->get();

提交回复
热议问题