Laravel package for handling publishable resources.
codetech/laravel-loggable is a Laravel package for laravel package for handling publishable resources..
It currently has 0 GitHub stars and 4 downloads on Packagist (latest version v0.0.1-beta).
Install it with composer require codetech/laravel-loggable.
Discover more Laravel packages by codetech
or browse all Laravel packages to compare alternatives.
Last updated

Laravel package to log CRUD operations.
Add the package to your Laravel app using composer
composer require codetech/laravel-loggable
Register the package's service provider in config/app.php. In Laravel versions 5.5 and beyond, this step can be skipped if package auto-discovery is enabled.
'providers' => [
...
CodeTech\Loggable\Providers\LoggableServiceProvider::class,
...
];
Execute the next Artisan command to run the migrations.
php artisan migrate
To start logging CRUD operations simply use the trait on your models.
class Post extends Model
{
use Loggable;
...
codetech/laravel-loggable is open-sourced software licensed under the MIT license.
CodeTech is a web development agency based on Matosinhos, Portugal. Oh, and we LOVE Laravel!