PHP code example of alkhachatryan / laravel-loggable

1. Go to this page and download the library: Download alkhachatryan/laravel-loggable library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

alkhachatryan / laravel-loggable example snippets

 
'driver' => 'database' 
 
class Post extends Model
{
    /** Include the loggable trait */
    use Loggable;
    
    /** Specified actions for this model */
    public $loggable_actions = ['edit', 'create', 'delete'];

    /** Specified fields for this model */
    public $loggable_fields  = ['title', 'body'];

    protected $fillable = ['title', 'body'];
}

Loggable::model('App\Post');

LoggableModel::whereModelName('App\Post')->orderBy('id', 'DESC')->paginate(10);