rental moon testing

This commit is contained in:
2020-06-06 04:47:13 -05:00
parent 2f09747222
commit ecaa9f8e86

View File

@@ -278,13 +278,13 @@ class MoonsController extends Controller
'SPM' => $moon->system . " - " . $moon->planet . " - " . $moon->moon, 'SPM' => $moon->system . " - " . $moon->planet . " - " . $moon->moon,
'StructureName' => $moon->structure_name, 'StructureName' => $moon->structure_name,
'FirstOre' => $moon->first_ore, 'FirstOre' => $moon->first_ore,
'FirstQuantity' => $moon->first_quantity, 'FirstQuantity' => number_format($moon->first_quantity, 0, ".", ","),
'SecondOre' => $moon->second_ore, 'SecondOre' => $moon->second_ore,
'SecondQuantity' => $moon->second_quantity, 'SecondQuantity' => number_format($moon->second_quantity, 0, ".", ","),
'ThirdOre' => $moon->third_ore, 'ThirdOre' => $moon->third_ore,
'ThirdQuantity' => $moon->third_quantity, 'ThirdQuantity' => number_format($moon->third_quantity, 0, ".", ","),
'FourthOre' => $moon->fourth_ore, 'FourthOre' => $moon->fourth_ore,
'FourthQuantity' => $moon->fourth_quantity, 'FourthQuantity' => number_format($moon->fourth_quantity, 0, ".", ","),
'Price' => number_format($moonprice, 0, ".", ","), 'Price' => number_format($moonprice, 0, ".", ","),
'Worth' => number_format($moon->moon_worth, 0, ".", ","), 'Worth' => number_format($moon->moon_worth, 0, ".", ","),
'RentalEnd' => $rentalEnd, 'RentalEnd' => $rentalEnd,