Laravel 4.2 可以选择指定自定义视图,app/config/view.php例如:
app/config/view.php
/* |-------------------------------------------------------------------------- | Pagination View |-------------------------------------------------------------------------- | | This view will be used to render the pagination link output, and can | be easily customized here to show any view you like. A clean view | compatible with Twitter's Bootstrap is given to you by default. | */ 'pagination' => 'pagination_slider-alt'
至少在 Laravel 5 中消失了view.php。
view.php
有没有办法在 Laravel 5中 复制此行为?
而在 Laravel 4.2中, 我将使用:
{{ $users->links('view.name') }}
在 Laravel 5中, 您可以复制以下内容:
@include('view.name', ['object' => $users])
现在,在包括视图,$object将有可用的分页方法,如currentPage(),lastPage(),perPage(),等。
$object
currentPage()
lastPage()
perPage()
您可以在http://laravel.com/docs/5.0/pagination中查看所有可用的方法