Answers for "attach function in laravel"

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
0

attach function in laravel

$book = App\Book::find(2);

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

Code answers related to "attach function in laravel"

Browse Popular Code Answers by Language