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?
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