除了覆盖list.blade.php文件之外,还有其他方法可以更改表中显示的行数吗?
答案 0 :(得分:3)
这是little-known API method,但你可以通过在你的EntityCrudController中调用它来做到这一点:
$this->crud->setDefaultPageLength(10); // number of rows shown in table view
答案 1 :(得分:0)
时间过去了。目前,在当前版本的 Backpack (v 4.1.X) 中,config/backpack/crud.php
中的配置文件中有一个名为 defaultPageLength
的设置,用于全局控制页面长度。如果应该更改单个 CRUD 控制器的页面长度,那么 $this->crud->setDefaultPageLength(50)
仍然是可行的方法。
可以在此处找到更多详细信息:https://backpackforlaravel.com/docs/4.1/crud-api#page-length