'required|min:3|max:255', 'project.description' => 'nullable|string|max:255', ]; public function submit() { $this->validate(); try { $this->project->save(); $this->emit('saved'); } catch (\Throwable $e) { return handleError($e, $this); } } }