application->refresh(); } public function submit($data) { try { LocalPersistentVolume::create([ 'name' => $data['name'], 'mount_path' => $data['mount_path'], 'host_path' => $data['host_path'], 'resource_id' => $this->application->id, 'resource_type' => Application::class, ]); $this->application->refresh(); $this->emit('clearAddStorage'); } catch (\Exception $e) { return generalErrorHandler($e, $this); } } }