belongsto relation laravel store code example
Example 1: laravel detach
$user->roles()->detach($roleId);
$user->roles()->detach();
Example 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 = 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();
Example 3: laravel belongs to
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Phone extends Model
{
public function user()
{
return $this->belongsTo('App\Models\User');
}
}