akaunting / laravel-money

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

How to convert float amount to int? #34

Closed madsem closed 4 years ago

madsem commented 4 years ago

Great package, thanks for the hard work.

I don't understand how to convert full currency amounts like 12.67 to int 1267, or is that not part of the library?

denisdulici commented 4 years ago

Unfortunately, that's not part of the package.

madsem commented 4 years ago

@denisdulici thanks! But I solved it by doing money(...)->getAmount() & money(...)->getValue() But now that you say this isn't supported, I'm wondering if that isn't correct?