123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace App\Exceptions;
- use Exception;
- use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
- class Handler extends ExceptionHandler
- {
-
- protected $dontReport = [
-
- ];
-
- protected $dontFlash = [
- 'password',
- 'password_confirmation',
- ];
-
- public function report(Exception $exception)
- {
- parent::report($exception);
- }
-
- public function render($request, Exception $exception)
- {
- return parent::render($request, $exception);
- }
- }
|