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();
これを行うためのより良い方法はありますか、またはこの方法に固執する必要がありますか?