Laravel 5 - Manual pagination

后端 未结 7 1551
情书的邮戳
情书的邮戳 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();

    0 讨论(0)
提交回复
热议问题