I am trying to update the relationship of a one-to-many relationship in Laravel. Unfortunately I couldn\'t find any documentation for it. Can anyone help me?
This is wha
Hey you can refer the laravel docs for the solution.
Link http://laravel.com/docs/4.2/eloquent#inserting-related-models
$account = Account::find(10); $user->account()->associate($account); $user->save();