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?

Fominykh Maxim
  • 485
  • 1
  • 6
  • 20

2 Answers2

21

Use $results->lastPage() paginator method.

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

Alexey Mezenin
  • 158,981
  • 26
  • 290
  • 279
0

You can using $results->lastPage()

See Document reference

Good luck!

vnguyen
  • 177
  • 1
  • 5