我正在查询模型,其中两个用户可以根据登录的人来访问它。
所以我有一个所有者和一个响应者,他的id被发布到调查中,并且可以进行maney调查。
这样的事情可以吗?
$survey = App\Survey::where('owner_id, Auth::user->id)->orWhere(responder _id, 'Auth::user->id);
答案 0 :(得分:0)
字面意思按照我猜测的方式工作。
$survey = App\Survey::where('owner_id, Auth::user->id)->orWhere(responder _id, 'Auth::user->id);