billowapp/show-me-the-money

Super simple money class for laravel and we mean simple.
32,439 7
Install
composer require billowapp/show-me-the-money
Latest Version:0.4.6
PHP:>=7.0
License:MIT
Last Updated:Apr 9, 2024
Links: GitHub  ·  Packagist
Maintainer: warrenhansen

Show-me-the-money

Super slim Money class.

Facade

[
	'Money' => Billow\Utilities\Facades\Money::class,
];

Usage

[
	$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'
];