Aware is a simple tool that tracks changes to Eloquent models and provides a way to access the changes made to them.
It uses Laravel's built-in event system to listen for model events and records the changes made to the model's attributes by creating trackers that are dispatched with jobs.
You can install the package via composer:
composer require charlgottschalk/laravel-awareRun the installation command:
php artisan aware:installRun the migrations to create the necessary database tables:
php artisan migrateYou're ready to go and tracking will happen automatically.
For more in-depth information and setup, please read the documentation.
The MIT License (MIT). Please see License File for more information.