Easily convert numbers to words in Laravel using this library, which leverages the native PHP INTL
extension to perform conversion effortlessly. With this library, you can convert numbers to words in various languages and also obtain the value in currency format according to the selected language. Supported languages include English, Spanish, Portuguese, French, Italian, Romanian, Hindi, Polish and Persian (Farsi).
⚙️ This library is compatible with Laravel versions 8.0 and higher ⚙️
To install the dependency via Composer, execute the following command:
composer require rmunate/spell-number
It's important to ensure that the intl
extension is enabled and loaded in the environment.
After installing the dependency in your project, you can start using it with the following examples:
To obtain the current list of languages with support, execute the following command:
SpellNumber::getAllLocales();
// array [▼
// 0 => "en" (English)
// 1 => "es" (Spanish)
// 2 => "pt" (Portuguese)
// 3 => "fr" (French)
// 4 => "it" (Italian)
// 5 => "ro" (Romanian)
// 6 => "fa" (Farsi)
// 7 => "hi" (India)
// 8 => "pl" (Polish)
// ]
You can easily convert numbers to words by defining the regional configuration to apply. If you don't define a regional configuration, "en" (English) will be applied by default.
SpellNumber::value(100)->locale('es')->toLetters();
// "Cien"
SpellNumber::value(100)->locale('fa')->toLetters();
// "صد"
SpellNumber::value(100)->locale('en')->toLetters();
// "One Hundred"
SpellNumber::value(100)->locale('hi')->toLetters();
// "एक सौ"
If needed, you can pass a floating-point number as an argument to convert it to words.
SpellNumber::value(123456789.12)->locale('es')->toLetters();
// "Ciento Veintitrés Millones Cuatrocientos Cincuenta Y Seis Mil Setecientos Ochenta Y Nueve Con Doce"
SpellNumber::value(123456789.12)->locale('hi')->toLetters();
// "बारह करोड़ चौंतीस लाख छप्पन हज़ार सात सौ नवासी और बारह"
This method can be useful for invoices, receipts, and similar scenarios. Obtain the supplied value in currency format.
SpellNumber::value(100)->locale('es')->currency('pesos')->toMoney();
// "Cien Pesos"
SpellNumber::value(100.12)->locale('es')->currency('Pesos')->fraction('centavos')->toMoney();
// "Cien Pesos Con Doce Centavos"
SpellNumber::value(100)->locale('fa')->currency('تومان')->toMoney();
// "صد تومان"
SpellNumber::value(100.12)->locale('hi')->currency('रूपये')->fraction('पैसे')->toMoney();
// "एक सौ रूपये और बारह पैसे"
SpellNumber::value(100)->locale('hi')->currency('रूपये')->toMoney();
// "एक सौ रूपये"
SpellNumber::value(100.65)->locale('pl')->currency('złotych')->fraction('groszy')->toMoney;
// "Sto Złotych I Sześćdziesiąt Pięć Groszy"
To support version 1.X, the following initializer methods are maintained.
// Integer, this method strictly requires an integer value to be sent as an argument.
SpellNumber::integer(100)->locale('es')->toLetters();
// Floating-point numbers, this method strictly requires a string value as an argument.
SpellNumber::float('12345.23')->locale('es')->toLetters();
- 🇨🇴 Raúl Mauricio Uñate Castro
- Email: [email protected]
- Siros Fakhri (Farsi Language)
- Ashok Devatwal (Hindi Language)
- Olsza (Polish Language)
This project is under the MIT License.
🌟 Support My Projects! 🚀
Make any contributions you see fit; the code is entirely yours. Together, we can do amazing things and improve the world of development. Your support is invaluable. ✨
If you have ideas, suggestions, or just want to collaborate, we are open to everything! Join our community and be part of our journey to success! 🌐👩💻👨💻