I have a Paginator instance $paginator in Laravel App, I want to display 'Last' in pagination, so I need a link to the last page. How to get the last page number in laravel 5.3?
Asked
Active
Viewed 3.0k times
2 Answers
21
Use $results->lastPage()
paginator method.
https://laravel.com/docs/5.3/pagination#paginator-instance-methods

Alexey Mezenin
- 158,981
- 26
- 290
- 279
-
$results is what instance? because if I use paginator->lastPage() I get this error Method lastPage does not exist. – Fominykh Maxim Jan 04 '17 at 19:18
-
1`Illuminate\Pagination\LengthAwarePaginator` – Alexey Mezenin Jan 04 '17 at 19:19
-
1Thanks! Got it, used simplePagination so it wasnt available – Fominykh Maxim Jan 04 '17 at 19:20