fixed a number formatting issue for display rental moons

This commit is contained in:
2020-05-23 22:57:31 -05:00
parent fc01cbc636
commit d25d566790
@@ -286,8 +286,8 @@ class MoonsController extends Controller
'ThirdQuantity' => $moon->ThirdQuantity,
'FourthOre' => $moon->FourthOre,
'FourthQuantity' => $moon->FourthQuantity,
'Price' => number_format($moonprice, 2, ".", ","),
'Worth' => number_format($worth, 2, ".", ","),
'Price' => number_format($moonprice, 0, ".", ","),
'Worth' => number_format($worth, 0, ".", ","),
'RentalEnd' => $rentalEnd,
'RowColor' => $color,
]);