Looking to hire Laravel developers? Try LaraJobs

laravel-audit-trail maintained by nietthijmen

Description
Laravel audit trail
Author
Last update
2026/01/12 16:52 (dev-main)
License
Downloads
15

Comments
comments powered by Disqus

Laravel audit trail

This is a really really basic audit trail implementation I made for school.

Should never ever ever be used in Production environments

Installation

composer require nietthijmen/laravel-audit-trail
php artisan vendor:publish --provider "NietThijmen\LaravelAuditTrail\LaravelAuditTrailServiceProvider" --tag="audit-trail-provider"
php artisan vendor:publish --provider "NietThijmen\LaravelAuditTrail\LaravelAuditTrailServiceProvider" --tag="audit-trail-migrations"

Usage

Add the following interface to your models:

NietThijmen\LaravelAuditTrail\Contracts\Auditable;
- class User extends Authenticatable {
+ class User extends Authenticatable implements Auditable {