“Ассоциированный Ларавел” Ответ

Ассоциированный Ларавел

When updating a belongsTo relationship, you may use the associate method. This 
method will set the foreign key on the child model:

	$account = App\Account::find(10);
	$user->account()->associate($account);
	$user->save();

When removing a belongsTo relationship, you may use the dissociate method. This
method will set the relationship foreign key to null:

	$user->account()->dissociate();
	$user->save();
Lokesh003Coding

Ларавел Прикрепитель

//id for single
$user->reasons->attach($reasonId);

//array for multiple
$user->reasons->attach($reasonIds);

$user->save();
Freeburn

Ответы похожие на “Ассоциированный Ларавел”

Вопросы похожие на “Ассоциированный Ларавел”

Больше похожих ответов на “Ассоциированный Ларавел” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования