PHPackages                             vivek-mistry/laravel-invoice-engine - 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. [Payment Processing](/categories/payments)
4. /
5. vivek-mistry/laravel-invoice-engine

ActiveLibrary[Payment Processing](/categories/payments)

vivek-mistry/laravel-invoice-engine
===================================

Global invoice engine for Laravel (tax, currency, number to words)

1.0.0(4mo ago)22MITPHPPHP ^8.2||^8.3||^8.4||^8.5

Since Dec 18Pushed 4mo agoCompare

[ Source](https://github.com/vivek-mistry/laravel-invoice-engine)[ Packagist](https://packagist.org/packages/vivek-mistry/laravel-invoice-engine)[ Docs](https://github.com/vivek-mistry/laravel-invoice-engine)[ RSS](/packages/vivek-mistry-laravel-invoice-engine/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (2)Versions (2)Used By (0)

 [![Laravel Invoice Engine](docs/images/laravel_invoice_engine.png)](docs/images/laravel_invoice_engine.png)

🧾 Laravel Invoice Engine
------------------------

[](#-laravel-invoice-engine)

Global invoice utilities for Laravel

- Tax
- Discounts
- Currency
- Number to Words

🚀 Features
----------

[](#-features)

- 🌍 Multi-country tax (GST, VAT, Sales Tax)
- 💸 Percentage &amp; flat discounts
- 🔢 Number to words (locale-based)
- 💱 Currency formatting (Intl)
- 🔄 Inclusive &amp; exclusive tax
- 🧪 Fully tested (PHPUnit)
- ⚡ Fluent, developer-friendly API

🛠️ Installation
---------------

[](#️-installation)

Install the package via Composer:

```
composer require vivek-mistry/laravel-invoice-engine
```

⚙️ Configuration (Optional)
---------------------------

[](#️-configuration-optional)

```
php artisan vendor:publish --tag=invoice-config
```

🧮 Basic Usage
-------------

[](#-basic-usage)

```
use Invoice;

Invoice::amount(1000)
    ->country('IN')
    ->taxRate(18)
    ->summary();
```

💸 Percentage Discount
---------------------

[](#-percentage-discount)

```
Invoice::amount(1000)
    ->discountPercent(10)
    ->taxRate(18)
    ->summary();
```

💱 Flat Discount
---------------

[](#-flat-discount)

```
Invoice::amount(1000)
    ->discountPercent(10)
    ->taxRate(18)
    ->summary();
```

🔄 Inclusive Tax
---------------

[](#-inclusive-tax)

```
Invoice::amount(1180)
    ->inclusive(true)
    ->taxRate(18)
    ->summary();
```

🔢 Number to Words
-----------------

[](#-number-to-words)

```
Invoice::amount(1250)->words();
```

🌍 Supported Regions
-------------------

[](#-supported-regions)

- 🇮🇳 India (GST)
- 🇺🇸 USA (Sales Tax)
- 🇬🇧 UK (VAT)
- 🇪🇺 EU (VAT)
- 🇦🇪 UAE (VAT)

🧪 Testing
---------

[](#-testing)

```
vendor/bin/phpuit
```

Change Logs
-----------

[](#change-logs)

Initial Release

Credits
-------

[](#credits)

- [Vivek Mistry](https://github.com/vivek-mistry) - Project creator and maintainer

License
-------

[](#license)

MIT License. See [LICENSE](/vivek-mistry/laravel-invoice-engine/blob/main/LICENSE) for details.

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance74

Regular maintenance activity

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity52

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

Unknown

Total

1

Last Release

145d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6015e635581bd32e06c670be33b2475db0a3b5c62cdf6ba65021365e9ebd19c7?d=identicon)[vivek-mistry](/maintainers/vivek-mistry)

---

Top Contributors

[![vivek-mistry](https://avatars.githubusercontent.com/u/32848578?v=4)](https://github.com/vivek-mistry "vivek-mistry (7 commits)")

---

Tags

phplaravelinvoiceLaravel Invoiceinvoice-engine

### Embed Badge

![Health badge](/badges/vivek-mistry-laravel-invoice-engine/health.svg)

```
[![Health](https://phpackages.com/badges/vivek-mistry-laravel-invoice-engine/health.svg)](https://phpackages.com/packages/vivek-mistry-laravel-invoice-engine)
```

###  Alternatives

[omalizadeh/laravel-multi-payment

A driver-based laravel package for online payments via multiple gateways

491.1k](/packages/omalizadeh-laravel-multi-payment)

PHPackages © 2026

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