rukhsar/modelhistory

Provides tracking of Laravel Models for creating, updating and deleting events

v1.0 2016-11-25 16:31 UTC

This package is not auto-updated.

Last update: 2024-09-28 19:58:19 UTC


README

Provides tracking of Laravel Models for creating, updating and deleting events. When a model which use ModelHistory trait call created/updated/deleted, an entry is written to the database with which user updated the model and some information about model changes.

Installation

Run the follwoing command

composer require rukhsar/modelhistory

Next, add the service provider in your array in config/app.php :

'providers' => [
    ...
            Rukhsar\ModelHistoryServiceProvider::class,
    ...
],

Publish the database migration

php artisan vendor:publish --provider="Rukhsar\ModelHistoryServiceProvider"

and run

php artisan migration

This will setup a model_history table in your database.

Use it

In you model, just add

use Rukhsar\Traits\ModelHistory;

and within you class defination use it like below

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use Rukhsar\Traits\ModelHistory;

class Post extends Model
{
    use ModelHistory;


}

Get the history of a particular model

For example for abouve model you can get the history by using

$post->history;