I would like to translate a number into a text for example 300 into three hundred, I am using Laravel 9 inertia js and Vue 3
i need translate a text into a number for example 300 into three hundred
I would like to translate a number into a text for example 300 into three hundred, I am using Laravel 9 inertia js and Vue 3
i need translate a text into a number for example 300 into three hundred
2
Answers
From the php side, you can do this:
You can do this by using below method, keep your original number and make a copy of your number and converting it into string and pass this from your API to your frontend application so it will do your job flawlessly.
It will currently give you currency name in indian format you can change it as per your need.
you just need to pass your number to this function and it will return you string of it as you require.