PHPackages                             vasilgerginski/filament-accounting - 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. [Admin Panels](/categories/admin)
4. /
5. vasilgerginski/filament-accounting

ActiveLibrary[Admin Panels](/categories/admin)

vasilgerginski/filament-accounting
==================================

A Filament plugin for managing expenses, incomes and their types

v2.1.0(5mo ago)161MITPHPPHP ^8.2

Since Dec 3Pushed 5mo agoCompare

[ Source](https://github.com/vasilGerginski/filament-accounting)[ Packagist](https://packagist.org/packages/vasilgerginski/filament-accounting)[ Docs](https://github.com/vasilGerginski/filament-accounting)[ RSS](/packages/vasilgerginski-filament-accounting/feed)WikiDiscussions main Synced today

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

Filament Accounting
===================

[](#filament-accounting)

A Filament plugin for managing expenses, incomes, and their types in Laravel applications.

Requirements
------------

[](#requirements)

VersionFilamentLaravelPHP2.x^4.0 | ^5.0^11.28 | ^12.0^8.21.x^3.0^10.0 | ^11.0^8.1Features
--------

[](#features)

- **Expenses Management**: Track expenses with CAPEX/OPEX categorization and amortization percentages
- **Expense Types**: Categorize your expenses with types
- **Incomes Management**: Track incomes with optional user/client association
- **Income Types**: Categorize your incomes with types
- **Charts &amp; Stats**: Visual dashboards with pie charts and statistics widgets
- **Date Range Filters**: Filter data by date ranges
- **Configurable**: Customize currency, navigation group, and more

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

[](#installation)

### From Packagist (when published)

[](#from-packagist-when-published)

```
composer require vasilgerginski/filament-accounting
```

### Local Development

[](#local-development)

Add the repository to your `composer.json`:

```
{
    "repositories": [
        {
            "type": "path",
            "url": "packages/vasilgerginski/filament-accounting"
        }
    ]
}
```

Then require the package:

```
composer require vasilgerginski/filament-accounting:@dev
```

Setup
-----

[](#setup)

### 1. Publish and run migrations

[](#1-publish-and-run-migrations)

```
php artisan vendor:publish --tag="filament-accounting-migrations"
php artisan migrate
```

### 2. Publish config (optional)

[](#2-publish-config-optional)

```
php artisan vendor:publish --tag="filament-accounting-config"
```

### 3. Register the plugin in your Filament Panel

[](#3-register-the-plugin-in-your-filament-panel)

In your `AdminPanelProvider.php`:

```
use VasilGerginski\FilamentAccounting\FilamentAccountingPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        // ...
        ->plugins([
            FilamentAccountingPlugin::make(),
        ]);
}
```

Configuration
-------------

[](#configuration)

The configuration file allows you to customize:

```
return [
    // Navigation group name
    'navigation_group' => 'Accounting',

    // Currency settings
    'currency' => 'EUR',
    'currency_symbol' => '€',
    'currency_label' => 'EUR',

    // User relationship for incomes
    'enable_user_relation' => true,
    'user_model' => 'App\\Models\\User',
    'user_label' => 'Client',
    'user_role_filter' => null, // e.g., 'client'

    // Enable/disable specific resources
    'resources' => [
        'expenses' => true,
        'expense_types' => true,
        'incomes' => true,
        'income_types' => true,
    ],
];
```

Customizing Resources
---------------------

[](#customizing-resources)

You can enable/disable specific resources in the plugin:

```
FilamentAccountingPlugin::make()
    ->expenses(true)
    ->expenseTypes(true)
    ->incomes(true)
    ->incomeTypes(false), // Disable income types
```

License
-------

[](#license)

MIT License. See [LICENSE](LICENSE) for more information.

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance71

Regular maintenance activity

Popularity10

Limited adoption so far

Community6

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 ~14 days

Total

4

Last Release

169d ago

Major Versions

v1.0.0 → v2.0.02025-12-14

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/15899179?v=4)[Vasil Nedelchev](/maintainers/vaseto)[@vaseto](https://github.com/vaseto)

---

Top Contributors

[![vasilGerginski](https://avatars.githubusercontent.com/u/1145019?v=4)](https://github.com/vasilGerginski "vasilGerginski (10 commits)")

---

Tags

laravelfinanceexpensesAccountingfilamentincomes

### Embed Badge

![Health badge](/badges/vasilgerginski-filament-accounting/health.svg)

```
[![Health](https://phpackages.com/badges/vasilgerginski-filament-accounting/health.svg)](https://phpackages.com/packages/vasilgerginski-filament-accounting)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

274326.6k8](/packages/croustibat-filament-jobs-monitor)[mradder/filament-logger

Audit logging, activity tracking, exports, alerts, and dashboards for Filament admin panels.

2317.4k](/packages/mradder-filament-logger)[stephenjude/filament-debugger

About

104162.2k2](/packages/stephenjude-filament-debugger)[guava/filament-knowledge-base

A filament plugin that adds a knowledge base and help to your filament panel(s).

209151.3k2](/packages/guava-filament-knowledge-base)

PHPackages © 2026

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