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?
Laravel 5.3 Pagination Total number of pages
Use $results->lastPage()
paginator method.
https://laravel.com/docs/5.3/pagination#paginator-instance-methods
$results is what instance? because if I use paginator->lastPage() I get this error Method lastPage does not exist. –
Logomachy
Illuminate\Pagination\LengthAwarePaginator
–
Gorrono Thanks! Got it, used simplePagination so it wasnt available –
Logomachy
© 2022 - 2024 — McMap. All rights reserved.