'required|string', 'storage.mount_path' => 'required|string', 'storage.host_path' => 'string|nullable', ]; public function submit() { $this->validate(); $this->storage->save(); } public function delete() { $this->storage->delete(); $this->emit('refreshStorages'); } }