PHPackages                             lemonpatwari/number-to-bangla - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. lemonpatwari/number-to-bangla

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

lemonpatwari/number-to-bangla
=============================

This will generate english number to bangla number

v1.0.1(4y ago)2116MITPHP

Since Sep 14Pushed 4y ago1 watchersCompare

[ Source](https://github.com/lemonpatwari/number-to-bangla)[ Packagist](https://packagist.org/packages/lemonpatwari/number-to-bangla)[ RSS](/packages/lemonpatwari-number-to-bangla/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (3)Used By (0)

Number to Bangla Number, Word or Month Name in Laravel
------------------------------------------------------

[](#number-to-bangla-number-word-or-month-name-in-laravel)

[![Packagist](https://camo.githubusercontent.com/fcc623ccf28dd4203a80a211e6722711be45665c75af0ed3f2c1d123a1df0116/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c656d6f6e706174776172692f6e756d6265722d746f2d62616e676c61)](https://camo.githubusercontent.com/fcc623ccf28dd4203a80a211e6722711be45665c75af0ed3f2c1d123a1df0116/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c656d6f6e706174776172692f6e756d6265722d746f2d62616e676c61)[![Packagist License](https://camo.githubusercontent.com/e28d5e490fe552346a3e73001a5870d1714d2a5b9adb977d6601358b853a6bdc/68747470733a2f2f706f7365722e707567782e6f72672f6c656d6f6e706174776172692f6e756d6265722d746f2d62616e676c612f6c6963656e73652e706e67)](http://choosealicense.com/licenses/mit/)[![Latest Stable Version](https://camo.githubusercontent.com/8d3b9ce0490f32818a805e2a28c6501c09a296609dd0eca3c67c78c3011f3e5a/68747470733a2f2f706f7365722e707567782e6f72672f6c656d6f6e706174776172692f6e756d6265722d746f2d62616e676c612f76657273696f6e2e706e67)](https://packagist.org/packages/lemonpatwari/number-to-bangla)[![GitHub stars](https://camo.githubusercontent.com/ebd7cf57a9f641483ae878db0b654001dcdf041508f0a0419782099ae0237f1a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6c656d6f6e706174776172692f6e756d6265722d746f2d62616e676c61)](https://github.com/lemonpatwari/number-to-bangla/stargazers)[![GitHub forks](https://camo.githubusercontent.com/ec423f3fad51e618718b1bb1864b8dff53aa9044669be21501cf6424bb880e57/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f6c656d6f6e706174776172692f6e756d6265722d746f2d62616e676c61)](https://github.com/lemonpatwari/number-to-bangla/network)

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,

OperationEnglish InputBangla OutputText (Integer)21424060দুই কোটি চৌদ্দ লক্ষ চব্বিশ হাজার ষাটText (Float)21424060.60দুই কোটি চৌদ্দ লক্ষ চব্বিশ হাজার ষাট দশমিক ছয়Number21424060.6২১৪২৪০৬০.৬Text Money Format21424060.6দুই কোটি চৌদ্দ লক্ষ চব্বিশ হাজার ষাট টাকা ষাট পয়সাMonth04এপ্রিলComma (Lakh)21424060২,১৪,২৪,০৬০Installation
------------

[](#installation)

Install the package through [Composer](http://getcomposer.org). On the command line:

```
composer require lemonpatwari/number-to-bangla

```

Publish
-------

[](#publish)

You can publish via single command:

```
php artisan banglaNumber:install
```

Usage
-----

[](#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

[](#security)

If you discover any issues, please email /  instead of using the issue tracker.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

1701d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1da1285047a7b1a116fa42afa18843b30f1b84387c7a1e9776de68c8c4edcdee?d=identicon)[lemonpatwari](/maintainers/lemonpatwari)

---

Top Contributors

[![lemonpatwari](https://avatars.githubusercontent.com/u/37670622?v=4)](https://github.com/lemonpatwari "lemonpatwari (8 commits)")

### Embed Badge

![Health badge](/badges/lemonpatwari-number-to-bangla/health.svg)

```
[![Health](https://phpackages.com/badges/lemonpatwari-number-to-bangla/health.svg)](https://phpackages.com/packages/lemonpatwari-number-to-bangla)
```

###  Alternatives

[recolize/module-recommendation-engine-magento2

The Recolize Recommendation Engine Extension for Magento 2

115.0k](/packages/recolize-module-recommendation-engine-magento2)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
