moon displays

This commit is contained in:
2021-05-31 23:36:18 +09:00
parent 38b0b8f63f
commit e4ccf5190b

View File

@@ -86,7 +86,7 @@ class MiningTaxesController extends Controller
'Loparite',
'Ytterbite',
];
/*
$systems = [
'0-NTIS',
'1-NJLK',
@@ -103,13 +103,12 @@ class MiningTaxesController extends Controller
'XZ-SKZ',
'Y-CWQY',
];
*/
$systems = AllianceMoon::where([
'rented' => 'No',
])->pluck('system_name')->unique()->toArray();
dd($systems);
//Get all of the moons which are not rented
$allyMoons = AllianceMoon::where([
'rented' => 'No',
@@ -124,8 +123,6 @@ class MiningTaxesController extends Controller
'system' => $moon->system_name,
'ores' => $ores,
]);
dd($moons);
}
return view('miningtax.user.display.moons.allmoons')->with('moons', $moons)