PHP code example of billowapp / show-me-the-money
1. Go to this page and download the library: Download billowapp/show-me-the-money library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
billowapp / show-me-the-money example snippets
[
'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'
];