PHP code example of jpuck / laravel-exception-mailer

1. Go to this page and download the library: Download jpuck/laravel-exception-mailer 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/ */

    

jpuck / laravel-exception-mailer example snippets


jpuck\laravel\exception\mailer\Provider::class,

protected $dontReport = [
    \Illuminate\Foundation\Http\Exceptions\MaintenanceModeException::class,
    \Symfony\Component\HttpKernel\Exception\NotFoundHttpException::class,
    \Illuminate\Database\Eloquent\ModelNotFoundException::class,
    \Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException::class,
    \Illuminate\Auth\AuthenticationException::class,
    \Illuminate\Auth\Access\AuthorizationException::class,
    \Illuminate\Session\TokenMismatchException::class,
];