audunru/model-history
最新稳定版本:v4.0.0
Composer 安装命令:
composer require audunru/model-history
包简介
Log changes to Laravel models
README 文档
README
Keep a record of changes to models in your application. If a user changes the name of a product from A to B, that change will be stored in a Change model and stored in your database. Only the changed attributes are stored. You can then use this to retrieve the model's history, including which user made the change.
Installation
Step 1: Install with Composer
composer require audunru/model-history
Step 2: Publish and run migrations
Note: Changes are stored in a table called history. You can change this in the configuration, but you will have to publish the configuration before publishing and running the migrations.
php artisan vendor:publish --tag=model-history-migrations php artisan migrate
Step 3: Add traits to your models
Add the MakesChanges trait to your User model:
namespace App\Models; use audunru\ModelHistory\Traits\MakesChanges; use Illuminate\Foundation\Auth\User as Authenticatable; class User extends Authenticatable { use MakesChanges;
Add the HasHistory trait to any model where you want to track changes:
namespace App\Models; use audunru\ModelHistory\Traits\HasHistory; use Illuminate\Database\Eloquent\Model; class Product extends Model { use HasHistory;
Step 4: Retrieve model changes
Assuming that you've added the HasHistory trait to a model named Product, you can retrieve the changes like this:
$product = Product::create([ 'description' => 'Old description', ]); $product->update([ 'description' => 'New description', ]); dump($product->changes);
Configuration
Publish the configuration file by running:
php artisan vendor:publish --tag=model-history-config
Available options:
/* * 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',
Development
Testing
Run tests:
composer test
统计信息
- 总下载量: 3.03k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-09-19