如何使用Laravel Eloquent创建多个WHERE子句查询?
2022-08-30 05:50:24
我正在使用Laravel Eloquent查询构建器,我有一个查询,我想要一个关于多个条件的子句。它有效,但它并不优雅。WHERE
例:
$results = User::where('this', '=', 1)
->where('that', '=', 1)
->where('this_too', '=', 1)
->where('that_too', '=', 1)
->where('this_as_well', '=', 1)
->where('that_as_well', '=', 1)
->where('this_one_too', '=', 1)
->where('that_one_too', '=', 1)
->where('this_one_as_well', '=', 1)
->where('that_one_as_well', '=', 1)
->get();
有没有更好的方法来做到这一点,或者我应该坚持这种方法?