akaunting / laravel-money

Currency formatting and conversion package for Laravel
https://akaunting.com
MIT License
732 stars 101 forks source link

Option to drop decimals if 0 #43

Closed TomWhitson closed 3 years ago

TomWhitson commented 3 years ago

Would it be possible to add an option to drop decimal if based on format it gives 0.

I suppose it would work best as an option when parsing the data in where you check for a float etc

mlambley commented 3 years ago

Hi @TomWhitson The referenced PR will allow you to use:

Money::USD(100, true)->formatWithoutZeroes(); //$100
Money::USD(100.5, true)->formatWithoutZeroes(); //$100.50

Will that work for you?