PHP code example of redrum0x / laravel-telegram-logging

1. Go to this page and download the library: Download redrum0x/laravel-telegram-logging 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/ */

    

redrum0x / laravel-telegram-logging example snippets


'telegram' => [
    'driver' => 'custom',
    'via'    => redrum0x\TelegramLogger\TelegramLogger::class,
    'level'  => 'debug',
]

'stack' => [
    'driver' => 'stack',
    'channels' => ['single', 'telegram'],
]

// Use the Laravel Log Facade
use Illuminate\Support\Facades\Log;
...

// All Laravel log leves are avaiable
Log::channel('telegram')->emergency($message);
Log::channel('telegram')->alert($message);
Log::channel('telegram')->critical($message);
Log::channel('telegram')->error($message);
Log::channel('telegram')->warning($message);
Log::channel('telegram')->notice($message);
Log::channel('telegram')->info($message);
Log::channel('telegram')->debug($message);
bash
php artisan vendor:publish --provider "redrum0x\TelegramLogger\TelegramLoggerServiceProvider"
bash
LOG_CHANNEL=telegram