This project, is a simple Laravel library, to save eloquent model logs.
You can install the package via composer:
composer require txsoura/activity-log
Next, you should publish the Activity Log provider using Artisan command. The activitlog
configuration file will be placed in your application's config
directory:
php artisan vendor:publish --provider="Txsoura\ActivityLog\Providers\ActivityLogServiceProvider"
Finally, you should run your database migrations. Activity Log will create one database table called activity_logs
:
php artisan migrate
See the WIKI for documentation.
This project is under MIT license. Go to LICENSE for more details.