spmn for moon updates

This commit is contained in:
2019-06-04 21:05:18 -05:00
parent 15db4490ce
commit 90d765d224

View File

@@ -172,6 +172,7 @@ class MoonsAdminController extends Controller
$planet = null; $planet = null;
$moon = null; $moon = null;
$name = null; $name = null;
$spmnTemp = array();
$spmn = array(); $spmn = array();
//Get the moons and put in order by System, Planet, then Moon number //Get the moons and put in order by System, Planet, then Moon number
@@ -186,9 +187,11 @@ class MoonsAdminController extends Controller
//Form our array of strings for each system, planet, and moon combination. //Form our array of strings for each system, planet, and moon combination.
foreach($moons as $m) { foreach($moons as $m) {
$temp = $m->System . " - " . $m->Planet . " - " . $m->Moon . " - " . $m->StructureName; $temp = $m->System . " - " . $m->Planet . " - " . $m->Moon . " - " . $m->StructureName;
$tempArr[$temp] = $temp; array_push($spmnTemp, $tempArr);
array_push($spmn, $tempArr); }
$tempArr = null;
foreach($spmnTemp as $key => $value) {
$spmn[$value] = $value;
} }
//Return the view and the form from the blade display //Return the view and the form from the blade display