this package has utils to send console query generate in your project laravel
cirelramos/query-log is a Laravel package for this package has utils to send console query generate in your project laravel.
It currently has 0 GitHub stars and 3 downloads on Packagist (latest version 1.0.1).
Install it with composer require cirelramos/query-log.
Discover more Laravel packages by cirelramos
or browse all Laravel packages to compare alternatives.
Last updated
The query-log package to send query-log to console with extra info and catch query sql .
Require the cirelramos/query-log package in your composer.json and update your dependencies:
composer require cirelramos/query-log
The defaults are set in config/query-log.php. Publish the config to copy the file to your own config:
php artisan vendor:publish --provider="CirelRamos\QueryLog\Providers\ServiceProvider"
Note: this is necessary to you can change default config
add provider in config/app.php
'providers' => [
CirelRamos\QueryLog\Providers\QueryLogProvider::class,
]
Released under the MIT License, see LICENSE.