12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace App\Exceptions;
- use Exception;
- use Illuminate\Auth\AuthenticationException;
- use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
- class Handler extends ExceptionHandler
- {
-
- protected $dontReport = [
-
- ];
-
- public function report(Exception $exception)
- {
- parent::report($exception);
- }
-
- public function render($request, Exception $exception)
- {
- return parent::render($request, $exception);
- }
-
- protected function unauthenticated($request, AuthenticationException $exception)
- {
- return $request->expectsJson()
- ? response()->json(['message' => 'Unauthenticated.'], 401)
- : redirect()->guest(route('login'));
- }
- }
|