'required|string', 'network' => 'required|string', 'server_id' => 'required|integer' ]; public function mount() { if (!$this->server_id) { if (request()->query('server_id')) { $this->server_id = request()->query('server_id'); } else { $this->server_id = Server::validated()->first()->id; } } $this->network = new Cuid2(7); $this->name = generateRandomName(); } public function submit() { $this->validate(); $found = ModelsStandaloneDocker::where('server_id', $this->server_id)->where('network', $this->network)->first(); if ($found) { $this->addError('network', 'Network already added to this server.'); return; } $docker = ModelsStandaloneDocker::create([ 'name' => $this->name, 'network' => $this->network, 'server_id' => $this->server_id, 'team_id' => session('currentTeam')->id ]); $server = Server::find($this->server_id); instantRemoteProcess(['docker network create --attachable ' . $this->network], $server, throwError: false); return redirect()->route('destination.show', $docker->uuid); } }