Skip to content

Instantly share code, notes, and snippets.

@yusidabcs
Created May 17, 2018 08:08
Show Gist options
  • Save yusidabcs/f7a63ad02ec317cd2dde73e8dab4c1dc to your computer and use it in GitHub Desktop.
Save yusidabcs/f7a63ad02ec317cd2dde73e8dab4c1dc to your computer and use it in GitHub Desktop.
<?php
namespace App\Exceptions;
use App\Notifications\ErrorNotification;
use Exception;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Illuminate\Support\Facades\Notification;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not reported.
*
* @var array
*/
protected $dontReport = [
//
];
/**
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array
*/
protected $dontFlash = [
'password',
'password_confirmation',
];
/**
* Report or log an exception.
*
* @param \Exception $exception
* @return void
*/
public function report(Exception $exception)
{
Notification::route('slack',env('SLACK_URL'))
->notify(new ErrorNotification($exception));
parent::report($exception);
}
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $exception)
{
return parent::render($request, $exception);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment