PHP code example of norbis / laravel-advanced-log

1. Go to this page and download the library: Download norbis/laravel-advanced-log 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/ */

    

norbis / laravel-advanced-log example snippets


'telegram' => [
    'driver' => 'telegram',
    'apiKey' => env('TELEGRAM_BOT_APIKEY'),
    'channel' => env('TELEGRAM_BOT_CHAT_ID'),
    //default debug
    'level'  => 'debug',
    //default true
    'bubble' => true,
    //default HTML
    'parseMode' => 'HTML',
    //default false
    'disableWebPagePreview' => false,
    //default false
    'disableNotification' => false,
],