0
私が持っているこのクエリはnew_comment->1
またはnew_review->1
またはnew_salary->1
Laravelは、どのようにデータを選択する
を持つすべてのユーザー私はuser
テーブル
$organisationUserNotifications = OrganisationUserNotification::
whereHas('user',function($user){
$user->where('status',STATUS_ACTIVE);
})
->orWhere('new_comment',ORGANISATION_NOTIFICATION_ACTIVE)
->orWhere('new_review',ORGANISATION_NOTIFICATION_ACTIVE)
->orWhere('new_salary',ORGANISATION_NOTIFICATION_ACTIVE)
->get();
このクエリ
id
name
status
1
|us_1
|0
2
|us_2
|1
3
|us_3
|1
とnotification
テーブル
id
new_comment
new_review
new_salary
1
| | |1
2
| | |1
3
| | |1
ユーザー1がstatus
0またはしてくださいユーザーがアクティブな場合、