PHPackages                             honey-comb/invoices - 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. honey-comb/invoices

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

honey-comb/invoices
===================

0.2.3(7y ago)0420MITPHPPHP ^7.1

Since Dec 4Pushed 7y ago4 watchersCompare

[ Source](https://github.com/honey-comb/invoices)[ Packagist](https://packagist.org/packages/honey-comb/invoices)[ Docs](https://github.com/honey-comb/invoices)[ RSS](/packages/honey-comb-invoices/feed)WikiDiscussions master Synced today

READMEChangelog (8)Dependencies (7)Versions (10)Used By (0)

honeycomb-invoices
==================

[](#honeycomb-invoices)

Invoices package for HoneyComb CMS

Description
-----------

[](#description)

HoneyComb CMS invoices functions

Attention
---------

[](#attention)

This is part invoices package for HoneyComb CMS package.

Requirement
-----------

[](#requirement)

- php: `^7.1`
- laravel: `^5.6`
- composer

Installation
------------

[](#installation)

Begin by installing this package through Composer.

```
	{
	    "require": {
	        "honey-comb/invoices": "0.1.*"
	    }
	}
```

or

```
    composer require honey-comb/invoices
```

Usage
-----

[](#usage)

If you use [honey-comb/payments](https://github.com/honey-comb/payments) package you can use our generated payment created event listener example to generate invoice.

- Run `php artisan vendor:publish --tag=hc-invoice`
- Register event in EventServiceProvider

```
protected $listen = [
    \HoneyComb\Payments\Events\HCPaymentCreated::class => [
        \App\Listeners\HCPaymentCreatedListener::class
    ],
];
```

The are two DTO's `HCInvoiceDTO` and `HCInvoiceItemDTO`

Create invoice:

```
$invoiceItemDto = (new HCInvoiceItemDTO())
        ->setLabel('Product')
        ->setQuantity(1)
        ->setVat(2)
        ->setAmount(10)
        ->setUnitPrice(10)
        ->setVatTotal(2)
        ->setAmountTotal(12);

$invoiceDto = (new HCInvoiceDTO())
    ->setAmount(10)
    ->setAmountTotal(12)
    ->setVat(2)
    ->setInvoiceDate('2016-04-13')
    ->setItems([
        $invoiceItemDto->toArray(),
    ]);

return $this->invoiceService->createAdvanceInvoice($invoiceDto->toArray());
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 95.2% 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 ~1 days

Total

9

Last Release

2707d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/50455fcb3fc494da9ef27a61de8fdb208f589635bcc1a052713050b0f5abca9c?d=identicon)[jdmitrijev](/maintainers/jdmitrijev)

---

Top Contributors

[![m4nt4s](https://avatars.githubusercontent.com/u/9013427?v=4)](https://github.com/m4nt4s "m4nt4s (20 commits)")[![gylys-zygimantas](https://avatars.githubusercontent.com/u/215317363?v=4)](https://github.com/gylys-zygimantas "gylys-zygimantas (1 commits)")

---

Tags

laravelinvoiceshoneyhoneycomb

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/honey-comb-invoices/health.svg)

```
[![Health](https://phpackages.com/badges/honey-comb-invoices/health.svg)](https://phpackages.com/packages/honey-comb-invoices)
```

###  Alternatives

[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[forxer/laravel-gravatar

A library providing easy gravatar integration in a Laravel project.

4235.6k](/packages/forxer-laravel-gravatar)[iteks/laravel-enum

A comprehensive Laravel package providing enhanced enum functionalities, including attribute handling, select array conversions, and fluent facade interactions for robust enum management in Laravel applications.

2516.7k](/packages/iteks-laravel-enum)

PHPackages © 2026

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