'nullable', 'database.description' => 'nullable', ]; public function render() { return view('livewire.project.service.database'); } public function submit() { try { $this->validate(); $this->database->save(); } catch (\Throwable $e) { ray($e); } finally { $this->emit('generateDockerCompose'); } } }