jeffersongoncalves / filament-erp-projects
Filament v5 panel resources for the Laravel ERP projects module — projects, tasks and timesheets.
Package info
github.com/jeffersongoncalves/filament-erp-projects
pkg:composer/jeffersongoncalves/filament-erp-projects
Fund package maintenance!
Requires
- php: ^8.2
- filament/filament: ^5.3
- jeffersongoncalves/laravel-erp-projects: dev-main
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.21
- orchestra/testbench: ^10.0|^11.0
- pestphp/pest: ^3.0|^4.0
- pestphp/pest-plugin-laravel: ^3.0|^4.0
README
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 widget —
ProjectStatsWidgetwith 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.
