Laravel 5.3 Pagination Total Pages

I have a Paginator instance $ paginator parameter in a Laravel application, I want to display "Last" paginated, so I need a link to the last page. How to get the last page number in laravel 5.3?

+5
source share
2 answers

Use the $results->lastPage() paginator method.

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

+6
source

You can use $results->total()

See Document Link

Good luck

0
source

Source: https://habr.com/ru/post/1262312/


All Articles