如何在Laravel背包中添加导出按钮



我想在laravel背包列表页面中添加导出按钮,我写$this->crud->enableExportButtons((;在公共函数setup((中,如文档中所述,但导出按钮没有显示?

这是公共函数setup((函数:

public function setup()
{
CRUD::setModel(AppModelsPerson::class);
CRUD::setRoute(config('backpack.base.route_prefix') . '/lead');
CRUD::setEntityNameStrings('Lead', 'Lead');
$this->crud->enableExportButtons();
}    

我试图通过写$this->crud->enableExportButtons((;在受保护的函数setupListOperation((中,但它不起作用。

protected function setupListOperation()
{
$this->crud->enableExportButtons();
.
.
.
}

在设置操作中添加enableExportButtons就足以显示导出按钮。如果它还没有显示,那么试着清除你的视野。

php artisan view:clear

最新更新