lemonpatwari / number-to-bangla
This will generate english number to bangla number
v1.0.1
2021-09-14 17:22 UTC
README
Laravel package to convert English numbers to Bangla number or Bangla text, Bangla month name and Bangla Money Format for Laravel. Maximum possible number to covert in Bangla word is 999999999999999 Example,
Installation
Install the package through Composer. On the command line:
composer require lemonpatwari/number-to-bangla
Publish
You can publish via single command:
php artisan banglaNumber:install
Usage
Here you can see some example of just how simple this package is to use.
use lemonpatwari\BanglaNumber\NumberToBangla; $numberToBangla = new NumberToBangla(); $output = $numberToBangla->bnWord(21424060); // Output: দুই কোটি চৌদ্দ লক্ষ চব্বিশ হাজার ষাট $output = $numberToBangla->bnWord(21424060.06); // Output: দুই কোটি চৌদ্দ লক্ষ চব্বিশ হাজার ষাট দশমিক শূন্য ছয় $output = $numberToBangla->bnMoney(21424060); // Output: দুই কোটি চৌদ্দ লক্ষ চব্বিশ হাজার ষাট টাকা $output = $numberToBangla->bnMoney(21424060.05); // Output: দুই কোটি চৌদ্দ লক্ষ চব্বিশ হাজার ষাট টাকা ছয় পয়সা $output = $numberToBangla->bnNum(21424060); // Output: ২১৪২৪০৬০ $output = $numberToBangla->bnNum(21424060.987); // Output: ২১৪২৪০৬০.৯৮৭ // Input Limit (1-12) Example $output = $numberToBangla->bnMonth(4); // Output: এপ্রিল $output = $numberToBangla->bnMonth(12); // Output: ডিসেম্বর $output = $numberToBangla->bnCommaLakh(21424060); // Output: ২,১৪,২৪,০৬০
Security
If you discover any issues, please email lemonpatwari@gmail.com / hello@lemonpatwari.com instead of using the issue tracker.
License
The MIT License (MIT). Please see License File for more information.