我有一个名为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关系
1 回答
三国纷争
TA贡献1804条经验 获得超7个赞
最终做了这个
Unit::whereHas('users', function($q) { $q->where('user_id', Auth::id()); })->first();
- 1 回答
- 0 关注
- 76 浏览
添加回答
举报
0/150
提交
取消