lemberg/laravel-query-logs

6.0.1 2021-01-27 11:41 UTC

This package is auto-updated.

Last update: 2024-04-27 18:26:22 UTC


README

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

  1. Add QUERY_LOGS=true to .env file.

  2. By default queries will store into /storage/logs/sql.log file.
    You can change it by editing the path option in query-log.php file

Actually that's all:)

License

Please see License File for more information.