Laravel 5.3 Pagination Total number of pages
Asked Answered
L

1

10

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?

Logomachy answered 4/1, 2017 at 19:14 Comment(0)
G
21

Use $results->lastPage() paginator method.

https://laravel.com/docs/5.3/pagination#paginator-instance-methods

Gorrono answered 4/1, 2017 at 19:16 Comment(3)
$results is what instance? because if I use paginator->lastPage() I get this error Method lastPage does not exist.Logomachy
Illuminate\Pagination\LengthAwarePaginatorGorrono
Thanks! Got it, used simplePagination so it wasnt availableLogomachy

© 2022 - 2024 — McMap. All rights reserved.