Download the PHP package traknpay/laravel-eloquent-approval without Composer
On this page you can find all versions of the php package traknpay/laravel-eloquent-approval. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download traknpay/laravel-eloquent-approval
More information about traknpay/laravel-eloquent-approval
Files in traknpay/laravel-eloquent-approval
Package laravel-eloquent-approval
Short Description Approval Package For Laravel Eloquent Model
License MIT
Informations about the package laravel-eloquent-approval
Laravel Eloquent Approval
Approval process for Laravel's Eloquent models.
How it works?
New entities are created in the 'approval' table as pending and then can become approved or rejected.
Install
Version Compatibility
Laravel Version | Package Version |
---|---|
5.6.* | ^1.0 |
Setup
Registering the service provider
By default the service provider is registered automatically by Laravel package
discovery otherwise you need to register it in your config\app.php
Run the following commands to migrate the 'approval' table:
Model
Add ApprovalTrait
trait to the model and override the isApprover()
function as per your need.
By default isApprover()
is true and if you use this trait, it will not put the new entities in the approval
table. You can override this functionality based on your need. If isApprover()
function returns false then entities are added to approval
table and mark the transaction as false.
Hence, if 'isApprover()' returns false the model will not be persited to database instead added to 'approval' table for approval.
For example, in this function you can check whether user has permission to approve or not.
Approval Events
Following model events are dispatched before and after saving data into 'approval' table.
sendingForApproval
- before saving data into 'approval' table.sentForApproval
- after saving data into 'approval' table.
Inspirations
I got some inspiration from mtvs/eloquent-approval package. Even though , I wrote my own package for my project purpose I got some insights on how to write my own package from this.
All versions of laravel-eloquent-approval with dependencies
illuminate/database Version ^5.6.0|^6.0
illuminate/support Version ^5.6.0|^6.0