Laravel Query Logs
Log database queries into file.
Requirements
- PHP >=
7.0
- Laravel =
5.4.*|5.5.*
Getting Started
Install package via composer
$ composer require lemberg/laravel-query-logs
Register Service Provider (Only for Laravel 5.4)
'providers' => [
Lemberg\LaraveQueryLogs\ServiceProvider::class,
],
Publish Configuration File
php artisan vendor:publish --provider="Lemberg\LaravelQueryLogs\ServiceProvider" --tag="config"
Usage
-
Add
QUERY_LOGS=true
to .env file. -
By default queries will store into
/storage/logs/sql.log
file.
You can change it by editing thepath
option inquery-log.php
file
Actually that's all:)
License
Please see License File for more information.