Как привязать связь belongsToMany в Laravel
Допустим есть класс Test
У него есть такое отношение:
public function items()
{
return $this->belongsToMany(Item::class, 'test_type_connection', 'test_id', 'item_id');
}
Сама привязка:
$test = Test::find(24);
$item = Item::find(12);
$test->items()->save($item);
Комментарии