我有一个名为unit具有这种关系的模型
/**
* Get the users associated with the unit
*/
public function users()
{
return $this->hasMany('App\Models\User\UserData');
}
在UserData模型中有一列user_id,我试图将其放入查询中。我正在尝试执行这样的查询
Unit::where('user_id', Auth::id())->first()
user_id但表中没有列Unit,只有users关系
三国纷争