audunru / model-history
Log changes to Laravel models
Installs: 1 333
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Requires
- php: ^8.2
- laravel/framework: ^11.0
- spatie/laravel-package-tools: ^1.9
Requires (Dev)
- fakerphp/faker: ^1.12
- friendsofphp/php-cs-fixer: ^3.0
- mockery/mockery: ^1.4
- orchestra/testbench: ^9.0
- php-coveralls/php-coveralls: ^2.2
- phpmd/phpmd: ^2.10
- phpunit/phpunit: ^11.0
- roave/security-advisories: dev-latest
- dev-master
- v2.1.5
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.2
- v2.0.1
- v2.0.0
- v1.0.1
- v1.0.0
- v0.3.0
- v0.2.0
- v0.1.0
- dev-dependabot/composer/development-dependencies-bd6f6bce17
- dev-release-please--branches--master
- dev-dependabot/composer/friendsofphp/php-cs-fixer-3.68.5
- dev-release-please--branches--master--components--model-history
This package is auto-updated.
Last update: 2025-03-10 13:30:29 UTC
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