getStatusCode(); if (view()->exists('errors.'.$code)) { return response()->view('errors.'.$e->getStatusCode()); } } return parent::render($request, $e); } /** * Convert an authentication exception into an unauthenticated response. * * @param \Illuminate\Http\Request $request * @param \Illuminate\Auth\AuthenticationException $exception * @return \Illuminate\Http\Response */ protected function unauthenticated($request, AuthenticationException $exception) { if ($request->expectsJson()) { return response()->json(['error' => 'Unauthenticated.'], 401); } if(in_array('admin', $exception->guards())) { return redirect()->guest('admin/login'); } return redirect()->guest(route('login')); } }