Download the PHP package taghassan54/filament-approvals without Composer
On this page you can find all versions of the php package taghassan54/filament-approvals. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download taghassan54/filament-approvals
More information about taghassan54/filament-approvals
Files in taghassan54/filament-approvals
Package filament-approvals
Short Description Manage approval processes in your filament application
License MIT
Homepage https://github.com/taghassan54/filament-approvals
Informations about the package filament-approvals
Manage approval processes in your filament application
This package allows you to implement approval flows in your Laravel Filament application.
This package brings the ringlesoft/laravel-process-approval) functionalities to filament. You can use all the ringlesoft/laravel-process-approval features in your laravel project. It also uses the spatie/laravel-permissions package, so you can use all its features.
🛠️ Be Part of the Journey
Hi, I'm Eighty Nine. I created aprovals plugin to solve real problems I faced as a developer. Your sponsorship will allow me to dedicate more time to enhancing these tools and helping more people. Become a sponsor and join me in making a positive impact on the developer community.
Quick understanding the package
Some processes in your application require to be approved by multiple people before the process can be completed. For example, an employee submits a timesheet, then the supervisor approves, then manager approves and finally the HR approves and the timesheet is logged. This package is a solution for this type of processes.
Approval flow
This is the chain of events for a particular process. For example, timesheet submission, expense request, leave request. These processes require that multiple people have check and approve or reject, until the process is complete.
Approval flows are based on a model, example, ExpenseRequest, LeaveRequest, TimesheetLogSubmission etc
Approval step
These are the steps that the process has. Each step is associated with a role that contains users that need to approve. When any of the users in the role approves, the process moves forward to the next step.
This package is based on roles, which are provided by the package spatie/laravel-permission.
Installation
You can install the package via composer:
Usage
-
Run the migrations using:
-
Add the plugin to your panel service provider as follows:
-
Make your model extend the ApprovableModel
- Create approval flows
- In your dashboard, a "Approval flows menu will have appeared". Click it and start creating the approval flows. The name is the name of the model, that you are using in your flow.
-
After you create your first approval create the steps. The steps will require that you have already create roles in your admin panel using the spatie/laravel-permission package.
- You can move to the next step 😉
- Add the approvable actions:
-
In your resource table, add the approvable actions
- In your view page or edit page, you can include the approval actions using the trait HasApprovalHeaderActions, and define the method getOnCompletionAction() that will return the action(s) to be shown once complete. If this method is not implemented and you use the trait, an error will be thrown.
- Add the ApprovalStatusColumn to your table to see the status of the approval flow
Just like that, you are good to go, make some moneyyyyy🤑
To add more approval flows(models), repeat the steps 3-6
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- Eighty Nine
- Tony Partridge
- Ringlesoft for the base approval model logic
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of filament-approvals with dependencies
filament/filament Version ^3.0
illuminate/contracts Version ^10.0|^11.0
ringlesoft/laravel-process-approval Version ^1.0
spatie/laravel-package-tools Version ^1.15.0
spatie/laravel-permission Version ^6.1