Laravel package to save logs in database making them permanent, always available for as long as you want.
sarfraznawaz2005/plogs is a Laravel package for laravel package to save logs in database making them permanent, always available for as long as you want..
It currently has 3 GitHub stars and 131 downloads on Packagist (latest version 1.2.8).
Install it with composer require sarfraznawaz2005/plogs.
Discover more Laravel packages by sarfraznawaz2005
or browse all Laravel packages to compare alternatives.
Last updated
Laravel package to save logs in database making them permanent, always available for as long as you want.

Via Composer
$ composer require sarfraznawaz2005/plogs
For Laravel < 5.5:
Add Service Provider to config/app.php in providers section
Sarfraznawaz2005\PLogs\ServiceProvider::class,
Publish package's config and migration files by running below command:
$ php artisan vendor:publish --provider="Sarfraznawaz2005\PLogs\ServiceProvider"
Run php artisan migrate to create plogs table in your database.
Now application logs can be seen at http://yourapp.com/plogs. See config/plogs.php config file to customize route and more settings.
Please see the license file for more information.