Laravel 5 - Manual pagination

后端 未结 7 1598
情书的邮戳
情书的邮戳 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:58

    Pretty way to instance this class

     use Illuminate\Pagination\LengthAwarePaginator as Paginator;
     //...
     $paginator = new Paginator($items->forPage($page, $limit), $count, $limit, $page, [
                'path'  => Paginator::resolveCurrentPath()
            ]);
    

    Note items must be a Collection Object. Use collect(Array()) to convert Array to Collection

    More informations

提交回复
热议问题