kamrul-haque / laravel-model-log
Log model events with data by simply adding a Trait
Installs: 42
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
This package is auto-updated.
Last update: 2025-03-11 14:42:04 UTC
README
Log model events with data by simply adding a Trait
Installation
Install the package via composer:
composer require kamrul-haque/laravel-model-log
Migrate the necessary database tables:
php artisan migrate
Usage
- Add
KamrulHaque\LaravelModelLog\Traits\Loggable
Trait to the Model you want to log - Access the logs by
/model-logs
uri added to your application by the package - To customize the log view, publish package views:
php artisan vendor:publish --provider="KamrulHaque\LaravelModelLog\ModelLogServiceProvider" --tag="views"