1. Go to this page and download the library: Download audunru/model-history 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/ */
namespace App\Models;
use audunru\ModelHistory\Traits\MakesChanges;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use MakesChanges;
namespace App\Models;
use audunru\ModelHistory\Traits\HasHistory;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
use HasHistory;
/*
* Table where the "Change" model will be stored
*/
'history_table_name' => 'history',
/*
* Eager load the change model's owner
*/
'eager_load_owner' => true,
/*
* Eager load the change model's model
*/
'eager_load_model' => false,
/*
* Date format used when returning the Change model as JSON
*/
'date_format' => 'Y-m-d H:i:s',
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.