lookupRemoteServers())->map(function ($server) { return [ 'key' => $server['key'], 'region' => $server['region'], 'plan' => Str::ucfirst($server['plan']), ]; }); $this->info('You can connect to a specific server with the --server=key option or set this server as default with the default-server command.'); $this->info(''); $this->table(['Key', 'Region', 'Type'], $servers); } protected function lookupRemoteServers() { try { return Http::withOptions([ 'verify' => false, ])->get(config('expose.server_endpoint', static::DEFAULT_SERVER_ENDPOINT))->json(); } catch (\Throwable $e) { return []; } } }