12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace App\Exceptions;
- use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
- class Handler extends ExceptionHandler
- {
-
- protected $dontReport = [
-
- ];
-
- protected $dontFlash = [
- 'password',
- 'password_confirmation',
- ];
-
- public function register()
- {
-
- }
- }
|