billowapp/show-me-the-money

Super simple money class for laravel and we mean simple.

0.4.6 2024-04-09 13:14 UTC

This package is auto-updated.

Last update: 2024-10-24 08:23:29 UTC


README

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