PHP code example of yaro / log-envelope

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

    

yaro / log-envelope example snippets


// config/app.php
'providers' => [
    // make this very first provider
    // so fatal exceptions can be catchable by envelope
    Yaro\LogEnvelope\ServiceProvider::class,
    //...
];

//...
public function report(Exception $e)
{
    $res = parent::report($e);
    
    \LogEnvelope::send($e);
    //...
    
    return $res; 
}
//...
bash
php artisan vendor:publish --provider="Yaro\LogEnvelope\ServiceProvider"
/app/Exceptions/Handler.php
yaro.log-envelope.php