:This packages allows the laravel models to have automatic logging

dev-master / 1.0.x-dev 2016-02-26 15:54 UTC

This package is not auto-updated.

Last update: 2024-04-13 14:50:33 UTC


README

Loggable is a Laravel 5 package which helps users to keep simple log of their model CRUD operations. .

Install

Via Composer

$ composer require themightysapien/loggable

Add the service provider to the providers array in app.php

Themighty\Loggable\LoggableServiceProvider

//THen do vendor:publish from the artisan command to copy the migration file migrate it
php artisan vendor:publish
php artisan migrate

Usage

//use LoggableModelTrait in any of your models whose CRUD logs you want to keep
class DemoModel extends \Eloquent {
    use Themighty\Loggable\Traits\LoggableModelTrait
}

Then you need to define a getLogData() function as

public function getLogData()
    {
        return array(
            'routeName' => 'admin.inventories',
            'title' => 'name',
            'modelName' => 'Inventory Item',
            'user' => \Auth::id()
        );
    }

routeName : leave it empty if you dont want the log data to be a link, or you can keep name of the resource route.

title : this is the DB table column whose data will be shown in the log.

modelname : Readable model name for the log.

user : the id of the user who performed the actions in the model.

THen you can display the logs as follows

//for all logs loop through \Themightysapien\Loggable\Logs::all() or filter it however you like

//for model specific logs you can call $model->logs to get model specific logs

//then inside the loop you can access the user with ->user property

foreach($model->logs as $log){
    echo $log->getModelName().' || '.$log->getLogEntry().' ||'.$log->getAction();
    echo '<br>';
    echo 'By :'.$log->user->name.' at '.$log->created_at;
}

The above code will produce the result like

Inventory Item || Milk || added

By themightysapien at 2015-12-12 00:00:00

Contributing

Please see CONTRIBUTING for details.

Security

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

Credits

License

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