Reference: How can I update an existing Eloquent relationship in Laravel 4?
$userinfo = \\Userinfo::find($id); \\User::find($id)->userinfo()->associate
You need to specify the field related like this:
public function profile() { return $this->hasOne('App\AdmProfile', 'id'); }