ServerException {#748
  -request: Request {#737
    -method: "POST"
    -requestTarget: null
    -uri: Uri {#733
      -scheme: "https"
      -userInfo: ""
      -host: "api.k8s.prod.beegroup.app"
      -port: null
      -path: "/verify"
      -query: ""
      -fragment: ""
    }
    -headers: array:3 [
      "User-Agent" => array:1 [
        0 => "GuzzleHttp/6.3.3 curl/7.64.0 PHP/7.1.33"
      ]
      "Content-Type" => array:1 [
        0 => "application/x-www-form-urlencoded"
      ]
      "Host" => array:1 [
        0 => "api.k8s.prod.beegroup.app"
      ]
    ]
    -headerNames: array:3 [
      "user-agent" => "User-Agent"
      "content-type" => "Content-Type"
      "host" => "Host"
    ]
    -protocol: "1.1"
    -stream: Stream {#735
      -stream: stream resource @334
        wrapper_type: "PHP"
        stream_type: "TEMP"
        mode: "w+b"
        unread_bytes: 0
        seekable: true
        uri: "php://temp"
        options: []
      }
      -size: 26
      -seekable: true
      -readable: true
      -writable: true
      -uri: "php://temp"
      -customMetadata: []
    }
  }
  -response: Response {#745
    -reasonPhrase: "Bad Gateway"
    -statusCode: 502
    -headers: array:5 [
      "Date" => array:1 [
        0 => "Tue, 30 Sep 2025 12:19:46 GMT"
      ]
      "Content-Type" => array:1 [
        0 => "text/html; charset=utf-8"
      ]
      "Content-Length" => array:1 [
        0 => "150"
      ]
      "Connection" => array:1 [
        0 => "keep-alive"
      ]
      "Strict-Transport-Security" => array:1 [
        0 => "max-age=31536000; includeSubDomains"
      ]
    ]
    -headerNames: array:5 [
      "date" => "Date"
      "content-type" => "Content-Type"
      "content-length" => "Content-Length"
      "connection" => "Connection"
      "strict-transport-security" => "Strict-Transport-Security"
    ]
    -protocol: "1.1"
    -stream: Stream {#743
      -stream: stream resource @340
        wrapper_type: "PHP"
        stream_type: "TEMP"
        mode: "w+b"
        unread_bytes: 0
        seekable: true
        uri: "php://temp"
        options: []
      }
      -size: 150
      -seekable: true
      -readable: true
      -writable: true
      -uri: "php://temp"
      -customMetadata: []
    }
  }
  -handlerContext: []
  #message: """
    Server error: `POST https://api.k8s.prod.beegroup.app/verify` resulted in a `502 Bad Gateway` response:\n
    <html>\r\n
    <head><title>502 Bad Gateway</title></head>\r\n
    <body>\r\n
    <center><h1>502 Bad Gateway</h1></center>\r\n
    <hr><center>ngin (truncated...)\n
    """
  #code: 502
  #file: "/var/www/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php"
  #line: 113
  trace: {
    /var/www/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php:113 {
      › 
      ›     return new $className($message, $request, $response, $previous, $ctx);}
    }
    /var/www/vendor/guzzlehttp/guzzle/src/Middleware.php:66 {    }    throw RequestException::create($request, $response);}
      arguments: {
        $request: Request {#737}
        $response: Response {#745}
      }
    }
    /var/www/vendor/guzzlehttp/promises/src/Promise.php:203 {if (isset($handler[$index])) {    $promise->resolve($handler[$index]($value));} elseif ($index === 1) {
      arguments: {
        Response {#745}
      }
    }
    /var/www/vendor/guzzlehttp/promises/src/Promise.php:156 {foreach ($handlers as $handler) {    self::callHandler($id, $value, $handler);}
      arguments: {
        $index: 1
        $value: Response {#745}
        $handler: array:3 [ …3]
      }
    }
    /var/www/vendor/guzzlehttp/promises/src/TaskQueue.php:47 {while ($task = array_shift($this->queue)) {    $task();}
    }
    /var/www/vendor/guzzlehttp/promises/src/Promise.php:246 {    $this->waitFn = null;    $wfn(true);} catch (\Exception $reason) {
      arguments: {
        true
      }
    }
    /var/www/vendor/guzzlehttp/promises/src/Promise.php:223 {} elseif ($this->waitFn) {    $this->invokeWaitFn();} elseif ($this->waitList) {
    }
    /var/www/vendor/guzzlehttp/promises/src/Promise.php:267 {while (true) {    $result->waitIfPending();}
    /var/www/vendor/guzzlehttp/promises/src/Promise.php:225 {} elseif ($this->waitList) {    $this->invokeWaitList();} else {
    }
    /var/www/vendor/guzzlehttp/promises/src/Promise.php:62 {{    $this->waitIfPending();}
    /var/www/vendor/guzzlehttp/guzzle/src/Client.php:131 {    $options[RequestOptions::SYNCHRONOUS] = true;    return $this->requestAsync($method, $uri, $options)->wait();}
    }
    /var/www/vendor/guzzlehttp/guzzle/src/Client.php:89 {        ? $this->requestAsync(substr($method, 0, -5), $uri, $opts)        : $this->request($method, $uri, $opts);}
      arguments: {
        $method: "post"
        $uri: "https://api.k8s.prod.beegroup.app/verify"
        $options: array:2 [ …2]
      }
    }
    /var/www/app/Http/Middleware/VerifyLicense.php:39 {
      › 
      › $result = $client->post(env('BASE_URL') . '/verify', $params);arguments: {
        $method: "post"
        $args: array:2 [ …2]
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {$response = method_exists($pipe, $this->method)                ? $pipe->{$this->method}(...$parameters)                : $pipe(...$parameters);
      arguments: {
        $request: Request {#42 …}
        $next: Closure {#696 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
      › 
      ›     return $callable($passable);} catch (Exception $e) {
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/fideloper/proxy/src/TrustProxies.php:57 {
      › 
      ›     return $next($request);}
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {$response = method_exists($pipe, $this->method)                ? $pipe->{$this->method}(...$parameters)                : $pipe(...$parameters);
      arguments: {
        $request: Request {#42 …}
        $next: Closure {#696 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
      › 
      ›     return $callable($passable);} catch (Exception $e) {
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:31 {
      › 
      ›     return $next($request);}
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {$response = method_exists($pipe, $this->method)                ? $pipe->{$this->method}(...$parameters)                : $pipe(...$parameters);
      arguments: {
        $request: Request {#42 …}
        $next: Closure {#696 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
      › 
      ›     return $callable($passable);} catch (Exception $e) {
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:31 {
      › 
      ›     return $next($request);}
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {$response = method_exists($pipe, $this->method)                ? $pipe->{$this->method}(...$parameters)                : $pipe(...$parameters);
      arguments: {
        $request: Request {#42 …}
        $next: Closure {#696 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
      › 
      ›     return $callable($passable);} catch (Exception $e) {
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27 {
      › 
      ›     return $next($request);}
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {$response = method_exists($pipe, $this->method)                ? $pipe->{$this->method}(...$parameters)                : $pipe(...$parameters);
      arguments: {
        $request: Request {#42 …}
        $next: Closure {#696 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
      › 
      ›     return $callable($passable);} catch (Exception $e) {
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:62 {
      › 
      ›     return $next($request);}
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {$response = method_exists($pipe, $this->method)                ? $pipe->{$this->method}(...$parameters)                : $pipe(...$parameters);
      arguments: {
        $request: Request {#42 …}
        $next: Closure {#696 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
      › 
      ›     return $callable($passable);} catch (Exception $e) {
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
      › 
      ›     return $pipeline($this->passable);}
      arguments: {
        Request {#42 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:151 {                ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)                ->then($this->dispatchToRouter());}
      arguments: {
        $destination: Closure {#22 …}
      }
    }
    /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:116 {
      › 
      ›     $response = $this->sendRequestThroughRouter($request);} catch (Exception $e) {
      arguments: {
        $request: Request {#42 …}
      }
    }
    /var/www/public/index.php:55 {$response = $kernel->handle(    $request = Illuminate\Http\Request::capture());
      arguments: {
        $request: Request {#42 …}
      }
    }
  }
}