route()->parameter('server'); if (! $server instanceof Server) { throw new NotFoundHttpException( 'No server resource was located in the request parameters.' ); } if ($server->installed !== 1) { throw new HttpException( Response::HTTP_FORBIDDEN, 'Access to this resource is not allowed due to the current installation state.' ); } return $next($request); } }