jeffersongoncalves/filament-erp-projects

Filament v5 panel resources for the Laravel ERP projects module — projects, tasks and timesheets.

Maintainers

Package info

github.com/jeffersongoncalves/filament-erp-projects

Homepage

Issues

pkg:composer/jeffersongoncalves/filament-erp-projects

Statistics

Installs: 2

Dependents: 1

Suggesters: 0

Stars: 1

3.x-dev 2026-06-29 17:21 UTC

This package is auto-updated.

Last update: 2026-06-29 17:22:02 UTC


README

Filament ERP Projects

Filament ERP Projects

Filament v5 panel resources for the Laravel ERP projects module — projects, tasks and timesheets.

This package is the UI layer for the jeffersongoncalves/laravel-erp-projects domain package (namespace JeffersonGoncalves\Erp\Projects\). It wires the project models into ready-to-use Filament resources, with a submittable timesheet that can be billed to a sales invoice.

Features

  • Project resources — Projects, tasks and activity types
  • Timesheets — Timesheets with a details relation manager and Submit/Cancel lifecycle
  • Billing — Create a sales invoice from a submitted timesheet (cross-module)
  • Dashboard widgetProjectStatsWidget with project and task counts
  • Configurable — Swap resource classes, change the navigation group or assign a cluster via config

Compatibility

Package PHP Filament Laravel
^3.0 ^8.2 ^5.0 ^11.0 | ^12.0 | ^13.0

Installation

Install the package via Composer:

composer require jeffersongoncalves/filament-erp-projects

Register the plugin on a Filament panel:

use JeffersonGoncalves\FilamentErp\Projects\FilamentErpProjectsPlugin;

$panel->plugin(
    FilamentErpProjectsPlugin::make()
        ->navigationGroup('ERP — Projects'),
);

Resources

Resource Purpose
ActivityTypeResource Activity types (billing rate)
ProjectResource Projects
TaskResource Tasks
TimesheetResource Timesheets (+ Details RM, Submit/Cancel, Create Sales Invoice)

The timesheet resource exposes Submit and Cancel record actions that drive the domain document lifecycle. A submitted timesheet also exposes a Create Sales Invoice action that bills the logged time to a downstream sales invoice.

Widgets

Widget Purpose
ProjectStatsWidget Project and task counts

Configuration

Publish the config to swap resource classes, change the navigation group, or adjust widgets:

php artisan vendor:publish --tag="filament-erp-projects-config"

Changelog

Please see CHANGELOG for what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.