用 Laravel/Eloquent 填充枢轴 table

Populating a pivot table with Laravel/Eloquent

我有 8 个 table:产品、害虫、活性物、作物、active_product、pest_product、crop_product 和 active_pest

我构建了一个表格来加载有关选定(农业化学)产品的信息 - 在该表格中,用户可以选择与该产品相关的害虫、活性物质和作物。提交后,我现有的代码将预期信息保存在产品 table 中,并且通过一组 "belongsToMany" 关系,active_product、pest_product 和 crop_product pivot tables 也正确更新。

我的问题是我不知道如何使用 actives 和 pests 信息(即它们各自的 id 值)来添加 to/update active_pest table.

我希望得到指导。

我模型中的方法如下:

产品

public function Actives()
{
  return $this->hasMany('App\Models\Active','active_product', 'product_id', 'active_id');
}
public function pest()
{
  return $this->belongsToMany('App\Models\Pest','pest_product', 'product_id', 'pest_id');
}
public function active()
{
  return $this->belongsToMany('App\Models\Active','active_product', 'product_id', 'active_id');
}

活跃

public function product()
{
  return $this->belongsToMany('App\Models\Product', 'active_product', 'active_id', 'product_id');
}

public function pest()
{
  return $this->belongsToMany('App\Models\Pest', 'active_pest', 'active_id', 'pest_id');
}

害虫

public function active()
{
  return $this->belongsToMany('App\Models\Active', 'active_pest', 'pest_id', 'active_id');
}
public function product()
{
  return $this->belongsToMany('App\Models\Product','pest_product', 'pest_id', 'product_id');
}
public function crop()
{
  return $this->belongsToMany('App\Models\Crop','crop_pest', 'pest_id', 'crop_id');
}

我正在为 Laravel 使用 BackPack - 我的产品控制器包含此更新功能:

public function update(UpdateRequest $request)
{    
    $redirect_location = parent::updateCrud($request);
    return $redirect_location;
}

updateCrud 是

public function updateCrud(UpdateRequest $request = null)
{
    $this->crud->hasAccessOrFail('update');
    $this->crud->setOperation('update');

    // fallback to global request instance
    if (is_null($request)) {
        $request = \Request::instance();
    }

    // update the row in the db
    $item = $this->crud->update($request->get($this->crud->model->getKeyName()),
                        $request->except('save_action', '_token', '_method', 'current_tab', 'http_referrer'));
    $this->data['entry'] = $this->crud->entry = $item;

    // show a success message
    \Alert::success(trans('backpack::crud.update_success'))->flash();

    // save the redirect choice for next time
    $this->setSaveAction();

    return $this->performSaveAction($item->getKey());
}

谢谢,汤姆

您可以像这样使用 laravel 的 attach 方法:

$actives = App\Active::create([
    'someColumn' => 'test',
    'anotherColumn' => 'test',
]);

$pests = App\Pest::create([
    'someColumn' => 'test',
    'anotherColumn' => 'test',
]);

$actives->pest()->attach($pests);
          ^^^-relation name in model