eudu4rdo/laravelauditforge is a Laravel package for a laravel package for auditing model changes..
It currently has 2 GitHub stars and 4 downloads on Packagist (latest version 0.0.2).
Install it with composer require eudu4rdo/laravelauditforge.
Discover more Laravel packages by eudu4rdo
or browse all Laravel packages to compare alternatives.
Last updated
Database change auditing: It is possible to choose which models in your structure will be monitored when actions such as insertion, update, and deletion are performed.
Route auditing: Route auditing allows you to map the entire flow that your client followed within the application.
In the project terminal, run the command below:
composer require eudu4rdo/laravelauditforge
With the package installed, publish the migrations and configuration files:
php artisan vendor:publish --provider="eudu4rdo\laravelauditforge\AuditForgeServiceProvider"
Run the migrations.
To perform basic usage of the application, simply use the Auditable trait in the model you wish to monitor:
use App\Traits\Auditable;
class ExampleModel extends Model
{
use Auditable;
// Other model configurations
}
The package provides flexible configurations to suit your auditing needs:
This project is open-sourced software licensed under the MIT License.
For questions or suggestions, reach out on GitHub or contact the repository owner directly. My links: