This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
Initial Release
- Added helper to MoneyPHP package -
money()
- For Human Readability -
money()->toHuman(100023)
- RM 1,000.23 - For Common Display -
money()->toCommon(100023)
- 1,000.23 - For Machine (intended format to store in Database - integer) -
money()->toMachine('1,000.23')
- 100023 - Fixed Exchange Rate Conversion -
money()->convertFixedRate($fixedExchange, 100, 'USD')->getAmount()
- $ 1 > RM 3.87