I am trying to use Paginator::make
on my array data with Laravel 5.5. I found an answer on another question, but the function is not working.
I cannot find Paginator::make
in the documentation either.
Asked
Active
Viewed 219 times
0

Grimthorr
- 6,856
- 5
- 41
- 53

Billy Adelphia
- 1,007
- 4
- 19
- 31
-
1you can do this in 5.5 `$paginator = new Illuminate\Pagination\Paginator($items, $perPage, $currentPage);` inject the class and then use it. – zeidanbm Nov 15 '17 at 12:40
-
Did you try to use paginate method in your Eloquent model ? – YouneL Nov 15 '17 at 12:57