Laravel 5.3 Pagination 总页数
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/41471575/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Laravel 5.3 Pagination Total number of pages
提问by Fominykh Maxim
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 App 中有一个分页器实例 $paginator,我想在分页中显示“Last”,所以我需要一个指向最后一页的链接。如何在laravel 5.3中获取最后一个页码?
回答by Alexey Mezenin
Use $results->lastPage()
paginator method.
使用$results->lastPage()
分页器方法。
https://laravel.com/docs/5.3/pagination#paginator-instance-methods
https://laravel.com/docs/5.3/pagination#paginator-instance-methods