我有表 3 表,设备(ID,名称)参数(ID,名称)和数据透视表设备参数(设备 ID,参数 ID),在我的“设备”列表视图中,我需要添加一个带有参数名称的列,所以我需要从参数表中检索名称。
设备型号:
public function parametros(){
return $this->belongsToMany('App\Parametro','equipo_parametro','equipo_id',
'parametro_id')->withTimestamps();
}
参数型号:
public function equipos(){
return $this->belongsToMany('App\Equipo','equipo_parametro','parametro_id',
'equipo_id')->withTimestamps();
}
我在设备克鲁德控制器上添加了这个,但没有成功。
$this->crud->addColumn([ // Select
'label' => 'Parametro',
'type' => 'select2',
'name' => 'equipo_id', // the db column for the foreign key
(not sure here since equipment foreign key is on pivot table????)
'entity' => 'parametros', // the method that defines the relationship in your Model
'attribute' => 'nombre', // foreign key attribute that is shown to user
'model' => "App\Parametro" // (doubt, there's a pivot table inbetween???) foreign key model
]);