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(3mo ago)160MITPHPPHP ^8.2

Since Dec 3Pushed 3mo 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 1mo ago

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

39

—

LowBetter than 86% of packages

Maintenance79

Regular maintenance activity

Popularity11

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity50

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

116d ago

Major Versions

v1.0.0 → v2.0.02025-12-14

### Community

Maintainers

![](https://www.gravatar.com/avatar/0be02f5ebcee3474f2ebcb4afb2bbb51a9b08296438be35adda5361d5eacafb4?d=identicon)[vaseto](/maintainers/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

[guava/filament-knowledge-base

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

206120.5k1](/packages/guava-filament-knowledge-base)[caresome/filament-neobrutalism-theme

A neobrutalism theme for FilamentPHP admin panels

303.2k](/packages/caresome-filament-neobrutalism-theme)[andreia/filament-ui-switcher

Add a modal with options to switch between different UI layouts and styles (colors, fonts, font sizes).

233.8k](/packages/andreia-filament-ui-switcher)[geo-sot/filament-env-editor

Access .env file though Filament admin panel

2432.3k1](/packages/geo-sot-filament-env-editor)[a2insights/filament-saas

Filament Saas for A2Insights

161.1k](/packages/a2insights-filament-saas)[mradder/filament-logger

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

141.1k](/packages/mradder-filament-logger)

PHPackages © 2026

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