我在数据库中有libraries
,townships
和states
个表(Library
,Township
,State
作为型号名称)。
Library
是1-n到Township
。
在Library
。
public function township(){
return $this->belongsTo('App\Township', 'township_id');
}
在Township
模型
public function libraries(){
return $this->hasMany('App\Library');
}
而Township
是1-n到State
。
在Township
模型
public function state() {
return $this->belongsTo('App\State', 'state_id');
}
在State
模型
public function townships(){
return $this->hasMany('App\Township');
}
在图书馆的创建表单中,我需要从State
获取所有行并将其填入select2框。
当然,Township
还有另一个select2框。它的值将在选定的State
上更改。
所以,问题是我需要在LibraryCrudController.php
$this->crud->addField([
'label' => 'State',
'type' => 'select2',
'name' => 'state_id', //Should From Township Model. But how?
'entity' => 'state',
'attribute' => 'name',
'model' => "App\State",
]);
如果我这样做,错误就是
ErrorException in SchemaException.php line 86:
There is no column with name 'state_id' on table 'libraries'. (View: /home/zugor/code/backpack-crud/vendor/backpack/crud/src/resources/views/fields/select2.blade.php) (View: /home/zugor/code/backpack-crud/vendor/backpack/crud/src/resources/views/fields/select2.blade.php) (View: /home/zugor/code/backpack-crud/vendor/backpack/crud/src/resources/views/fields/select2.blade.php) (View: /home/zugor/code/backpack-crud/vendor/backpack/crud/src/resources/views/fields/select2.blade.php)
这有什么解决方案吗? 我搜索得很多,但没有找到。