yajra / laravel-auditable by yajra

A simple Laravel user auditing package for Eloquent Model.
124,600
146
4
Package Data
Maintainer Username: yajra
Maintainer Contact: aqangeles@gmail.com (Arjay Angeles)
Package Create Date: 2016-01-28
Package Last Update: 2024-03-25
Home Page: http://yajrabox.com/docs/laravel-auditable
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 03:03:16
Package Statistics
Total Downloads: 124,600
Monthly Downloads: 2,350
Daily Downloads: 126
Total Stars: 146
Total Watchers: 4
Total Forks: 23
Total Open Issues: 1

Laravel Auditable

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

Laravel Auditable is a simple Laravel auditing package for your Eloquent Model. This package automatically inserts/updates an audit log on your table on who created and last updated the record.

Install via Composer

composer require yajra/laravel-auditable

Usage

Update your model's migration and add created_by and updated_by field using the auditable() blueprint macro.

Schema::create('users', function (Blueprint $table) {
    $table->increments('id');
    $table->string('name', 100);
    $table->auditable();
    $table->timestamps();
});

Then use AuditableTrait on your model.

namespace App;

use Yajra\Auditable\AuditableTrait;

class User extends Model
{
    use AuditableTrait;
}

Dropping columns

You can drop auditable columns using dropAuditable() method.

Schema::create('users', function (Blueprint $table) {
    $table->dropAuditable();
});

And your done! The package will now automatically add a basic audit log for your model to track who inserted and last updated your records.

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email aqangeles@gmail.com instead of using the issue tracker.

Credits

Buy me a coffee

paypal

License

The MIT License (MIT). Please see License File for more information.