libern/laravel-sql-logging is a Laravel package for laravel 5 package for logging sql queries..
It currently has 0 GitHub stars and 4.592 downloads on Packagist.
Install it with composer require libern/laravel-sql-logging.
Discover more Laravel packages by libern
or browse all Laravel packages to compare alternatives.
Last updated
Laravel 5 package for logging SQL queries.
Require this package with composer using the following command:
composer require libern/laravel-sql-logging
Or just add libern/laravel-sql-logging to your composer.json file:
{
"require": {
"libern/laravel-sql-logging": "dev-master"
}
}
After updating composer, add the service provider to the providers array in config/app.php
"Libern\SqlLogging\SqlLoggingServiceProvider",
You can also publish the config file to enable/disable the logging.
php artisan vendor:publish --provider="Libern\SqlLogging\SqlLoggingServiceProvider"