解決済み
必要なのは、次のようにモデル関数にテーブル名と列名を追加することだけでした。
public function submores()
{
return $this->belongsToMany(Submore::class, 'product_mores', 'product_id', 'submore_id');
}
また、保存機能をmores
から変更します submores
へ そのように:
$product->submores()->sync($request->submores, false);
次に、name
を変更します およびfor
私のフォームでsubmores
<label for="submores">Attributes</label>
<select class="tagsselector form-control" name="submores[]" multiple="multiple">
//// rest of the code...