moon displays

This commit is contained in:
2021-05-31 23:32:29 +09:00
parent 7af4457c6a
commit cef0f7632d

View File

@@ -113,11 +113,13 @@ class MiningTaxesController extends Controller
$ores = AllianceMoonOre::where([
'moon_id' => $moon->moon_id,
])->get(['ore_name', 'quantity'])->toArray();
dd($moon->system_name);
$moons->push([
'system' => $moon->system_name,
'ores' => $ores,
]);
dd($moons);
}
return view('miningtax.user.display.moons.allmoons')->with('moons', $moons)