0

我有表 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
    ]);
4

1 回答 1

0

如果您正在添加一个列并且已经运行了之前的迁移,您可以在php artisan make:migration update_equipment_table其中创建一个新的迁移,然后您可以执行类似这样的操作

Schema::table('table', function (Blueprint $table) {
    $table->string('column');
});

然后重新运行迁移php artisan migrate,这会将新列添加到您的表中。

于 2017-06-12T20:22:06.930 回答