我正在使用Backpack crud 3.2。在Laravel 5.4。
我需要的是在list.blade.php中添加一个新的自定义按钮,靠近编辑和删除按钮。并将另一个视图链接到新按钮。
我已经浏览了list.blade.php中的行。 我知道每个按钮,字段和视图都有刀片文件。但即使我找不到如何添加这些编辑和删除按钮?
有人可以提出想法吗?
答案 0 :(得分:1)
在CURD控制器中,您可以在此处创建按钮:
public function setup()
{
..............
// ------ CRUD BUTTONS
// possible positions: 'beginning' and 'end'; defaults to 'beginning'
for the 'line' stack, 'end' for the others;
// $this->crud->addButton($stack, $name, $type, $content, $position);
// add a button; possible types are: view, model_function
..............
}
您可以看到更多:https://laravel-backpack.readme.io/v3.0/docs/crud-buttons