'required|min:3|max:255', 'project.description' => 'nullable|string|max:255', ]; protected $listeners = ['refreshEnvs' => '$refresh', 'saveKey' => 'saveKey']; public function saveKey($data) { try { $this->project->environment_variables()->create([ 'key' => $data['key'], 'value' => $data['value'], 'type' => 'project', 'team_id' => currentTeam()->id, ]); $this->project->refresh(); } catch (\Throwable $e) { return handleError($e, $this); } } public function mount() { $projectUuid = request()->route('project_uuid'); $teamId = currentTeam()->id; $project = Project::where('team_id', $teamId)->where('uuid', $projectUuid)->first(); if (!$project) { return redirect()->route('dashboard'); } $this->project = $project; } public function submit() { $this->validate(); try { $this->project->save(); $this->dispatch('saved'); } catch (\Throwable $e) { return handleError($e, $this); } } }