'proxyStatusUpdated']; public function proxyStatusUpdated() { $this->server->refresh(); } public function mount() { $this->parameters = get_route_parameters(); try { $this->server = Server::ownedByCurrentTeam()->whereUuid(request()->server_uuid)->firstOrFail(); } catch (Throwable $e) { return handleError($e, $this); } return null; } public function render() { return view('livewire.server.proxy.show'); } }