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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

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.

  1. sendingForApproval - before saving data into 'approval' table.
  2. 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

PHP Build Version
Package Version
Requires php Version ^7.0|^8.0
illuminate/database Version ^5.6.0|^6.0
illuminate/support Version ^5.6.0|^6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package traknpay/laravel-eloquent-approval contains the following files

Loading the files please wait ....