diff --git a/app/Http/Controllers/Moons/MoonsController.php b/app/Http/Controllers/Moons/MoonsController.php index 0fadf12e9..57c120298 100644 --- a/app/Http/Controllers/Moons/MoonsController.php +++ b/app/Http/Controllers/Moons/MoonsController.php @@ -278,13 +278,13 @@ class MoonsController extends Controller 'SPM' => $moon->system . " - " . $moon->planet . " - " . $moon->moon, 'StructureName' => $moon->structure_name, 'FirstOre' => $moon->first_ore, - 'FirstQuantity' => $moon->first_quantity, + 'FirstQuantity' => number_format($moon->first_quantity, 0, ".", ","), 'SecondOre' => $moon->second_ore, - 'SecondQuantity' => $moon->second_quantity, + 'SecondQuantity' => number_format($moon->second_quantity, 0, ".", ","), 'ThirdOre' => $moon->third_ore, - 'ThirdQuantity' => $moon->third_quantity, + 'ThirdQuantity' => number_format($moon->third_quantity, 0, ".", ","), 'FourthOre' => $moon->fourth_ore, - 'FourthQuantity' => $moon->fourth_quantity, + 'FourthQuantity' => number_format($moon->fourth_quantity, 0, ".", ","), 'Price' => number_format($moonprice, 0, ".", ","), 'Worth' => number_format($moon->moon_worth, 0, ".", ","), 'RentalEnd' => $rentalEnd,