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
**
Try
$user = User::find(); $account = Account::find()->user()->save($user)
My apologies, I didn't understand what was trying to be accomplished.