PHP code example of rukhsar / modelhistory

1. Go to this page and download the library: Download rukhsar/modelhistory 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/ */

    

rukhsar / modelhistory example snippets



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

use Rukhsar\Traits\ModelHistory;



namespace App;

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

class Post extends Model
{
    use ModelHistory;


}

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

php artisan migration