Package Data | |
---|---|
Maintainer Username: | warrenhansen |
Maintainer Contact: | warren@billow.co.za (Warren Hansen) |
Package Create Date: | 2016-10-03 |
Package Last Update: | 2024-04-09 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-01-27 03:00:03 |
Package Statistics | |
---|---|
Total Downloads: | 25,369 |
Monthly Downloads: | 568 |
Daily Downloads: | 5 |
Total Stars: | 7 |
Total Watchers: | 2 |
Total Forks: | 12 |
Total Open Issues: | 2 |
Super slim Money class.
[
'Money' => Billow\Utilities\Facades\Money::class,
];
[
$money = new Money(10000);
$money->amount() // 10000
$money->convertedAmount() // '100.00'
$money->fromString('100') // 10000
$money->fromString('100')->amount() // 10000
$money->fromString('100')->convertedAmount() // '100.00'
$money->fromString('100')->asCurrency('R') // 'R 100.00'
];