Skip to content

Commit

Permalink
readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Dec 9, 2017
1 parent 191eb92 commit a39d0e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ You can change the currencies information of your app from `config/money.php` fi
```php
use Akaunting\Money\Money;

echo Money::USD(500); // '$ 5.00' unconverted
echo new Money(500, new Currency('USD')); // '$ 5.00' unconverted
echo Money::USD(500, true); // '$ 500.00' converted
echo new Money(500, new Currency('USD'), true); // '$ 500.00' converted
echo Money::USD(500); // '$5.00' unconverted
echo new Money(500, new Currency('USD')); // '$5.00' unconverted
echo Money::USD(500, true); // '$500.00' converted
echo new Money(500, new Currency('USD'), true); // '$500.00' converted
```

### Advanced
Expand Down

0 comments on commit a39d0e1

Please sign in to comment.