我刚刚在Laravel项目中安装了Backpack。我按照创建常规TourCrudController的步骤进行操作,但是出现500错误,并且在日志中,主要问题是
local.ERROR:未定义的索引:列
。除了路由之外,我没有对CRUD文件进行任何更改(将其更改为复数并在Crud路由文件,视图和TourCrudController中进行了更改)。其他CrudControllers可以正常工作。您能帮我找到问题吗?
class TourCrudController extends CrudController
{
public function setup()
{
$this->crud->setModel('App\Models\Tour');
$this->crud->setRoute(config('backpack.base.route_prefix') . '/tours');
$this->crud->setEntityNameStrings('tour', 'tours');
}
Route::group([
...
], function () { // custom admin routes
Route::crud('tours', 'TourCrudController');
}); // this should be the absolute last line of this file
答案 0 :(得分:1)
我关闭了该问题,该错误已在4.0.11版本中修复。如果有人需要