21
Laravel Eloquent kullanarak birden çok nerede yan tümce sorgu oluşturmak nasıl?
Laravel Eloquent sorgu oluşturucu kullanıyorum ve WHEREbirden çok koşulda bir cümle istediğim bir sorgu var . Çalışıyor, ama zarif değil. Misal: $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) …