hi im using php NumberFormatter
in laravel
now if i want to echo number i did this code
@php
$digit = new \NumberFormatter(Lang::locale(), \NumberFormatter::SPELLOUT);
echo $digit->format(round(10.557,3));
@endphp
the result will be
but i need it to be
ten and five handred and seventy five
how can i change the format .. thanks ..
you can try to build a function manually