📜  关联 laravel - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:37.244000             🧑  作者: Mango

代码示例2
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();