📜  Laravel - 在查询中添加条件 where 子句 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:42.026000             🧑  作者: Mango

代码示例1
$user_to_mail = User::where('store_id', $item->store_id)
                    ->when($store->notification_role_id > 0, function ($q) use ($store) {
                        return $q->where('role_id', $store->notification_role_id);
                    })
                    ->get();