Answers for "attach method laravel"

PHP
1

laravel attach

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

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

$user->save();
Posted by: Guest on July-10-2020
2

associate laravel

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

	$account = AppAccount::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();
Posted by: Guest on December-07-2020
0

attach function in laravel

$book = AppBook::find(2);

$book->authors()->attach($authorId);
Posted by: Guest on June-07-2021
0

latavel attach method

$user->roles()->attach($roleId, ['expires' => $expires]);
Posted by: Guest on December-30-2020

Code answers related to "attach method laravel"

Browse Popular Code Answers by Language