parameters = Route::current()->parameters(); } public function submit() { try { $application_id = Application::where('uuid', $this->parameters['application_uuid'])->firstOrFail()->id; EnvironmentVariable::create([ 'key' => $this->key, 'value' => $this->value, 'is_build_time' => $this->is_build_time, 'application_id' => $application_id, ]); $this->emit('reloadWindow'); } catch (mixed $e) { dd('asdf'); if ($e instanceof QueryException) { dd($e->errorInfo); $this->emit('error', $e->errorInfo[2]); } else { $this->emit('error', $e); } } } }