profemzy's avatar

Laravel Convert Amount in Digit to Words

Please I will like to know if there are packages for Laravel that can be used to convert amount in digits to words in a laravel application.

Thanks

0 likes
5 replies
profemzy's avatar

I am getting Class 'NumberFormatter' on Ubuntu LInux. Code is below:

$test = 1000025.05;

$f = new \NumberFormatter( locale_get_default(), \NumberFormatter::SPELLOUT );

$word = $f->format($test);

dd($word);

2 likes
omidgfx's avatar

Is there anything like this in faker?

Please or to participate in this conversation.