我有一個(gè)名為unit具有這種關(guān)系的模型/** * Get the users associated with the unit */public function users(){ return $this->hasMany('App\Models\User\UserData');}在UserData模型中有一列user_id,我試圖將其放入查詢中。我正在嘗試執(zhí)行這樣的查詢Unit::where('user_id', Auth::id())->first()user_id但表中沒有列Unit,只有users關(guān)系
1 回答

三國紛爭
TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超7個(gè)贊
最終做了這個(gè)
Unit::whereHas('users', function($q) { $q->where('user_id', Auth::id()); })->first();
- 1 回答
- 0 關(guān)注
- 111 瀏覽
添加回答
舉報(bào)
0/150
提交
取消