name = $this->server->name; $this->ip = $this->server->ip; $this->port = $this->server->port; } public function update(): void { app(\App\Actions\Server\EditServer::class)->edit($this->server, $this->all()); session()->flash('status', 'server-updated'); } public function render(): View { return view('livewire.server-settings.edit-server'); } }