Laravel 5 - Manual pagination

后端 未结 7 1589
情书的邮戳
情书的邮戳 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 09:53

    Another way of using pagination would be like this:

    public function index()
    {
        $posts = DB::table('posts')->paginate(15);
    }
    

提交回复
热议问题