[Solved] Laravel combined OR AND Solution


DB::table('tableName') 
            ->where(function ($query) {
                $query->where('x', '=', 1)
                      ->orWhere('y', '=', '1');
            })
            ->where('starting_at', '<', '2018-05-01')
            ->get();

0

solved Laravel combined OR AND Solution