diff --git a/app/Http/Controllers/MiningTaxes/MiningTaxesController.php b/app/Http/Controllers/MiningTaxes/MiningTaxesController.php index 4ae9a0914..3c5609bbc 100644 --- a/app/Http/Controllers/MiningTaxes/MiningTaxesController.php +++ b/app/Http/Controllers/MiningTaxes/MiningTaxesController.php @@ -89,15 +89,15 @@ class MiningTaxesController extends Controller $systems = AllianceMoon::where([ 'rented' => 'No', - ])->where(['moon_type', '!=', 'R32']) - ->orWhere(['moon_type', '!=', 'R64']) + ])->where('moon_type', '!=', 'R32') + ->orWhere('moon_type', '!=', 'R64') ->pluck('system_name')->unique()->toArray(); //Get all of the moons which are not rented $allyMoons = AllianceMoon::where([ 'rented' => 'No', - ])->where(['moon_type', '!=', 'R32']) - ->orWhere(['moon_type', '!=', 'R64']) + ])->where('moon_type', '!=', 'R32') + ->orWhere('moon_type', '!=', 'R64') ->get(); foreach($allyMoons as $moon) {