check(); } /** * @return array */ public function getAttachmentData(): array { return [ 'title' => trim($this->input('title')), 'description' => trim($this->input('description')), 'notes' => trim($this->input('notes')), ]; } /** * @return array */ public function rules() { return [ 'title' => 'between:1,255', 'description' => 'between:1,65536', 'notes' => 'between:1,65536', ]; } }