PHP code example of sofa / laravel-db-queries-alert

1. Go to this page and download the library: Download sofa/laravel-db-queries-alert library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

sofa / laravel-db-queries-alert example snippets


return [
    'error' => 100,
    'warning' => 50,
    'info' => 20,
];

    // config/app.php

        'providers' => [
            ...
            Sofa\DbQueriesAlert\ServiceProvider::class,
        ],
    

    // app/Http/Kernel.php
    class Kernel extends HttpKernel
    {
        /**
         * The application's global HTTP middleware stack.
         *
         * These are run for every single Request.
         *
         * @var array
         */
        protected $middleware = [
            ...
            \Sofa\DbQueriesAlert\Middleware::class,
        ];



    // .env
    DB_QUERIES_ALERT_ENABLED=true

    

$ php artisan vendor:publish --provider="Sofa\DbQueriesAlert\ServiceProvider"