This commit is contained in:
James Cole
2016-10-22 22:03:00 +02:00
parent 49e32abd3f
commit a8a8afc2be
6 changed files with 32 additions and 21 deletions

View File

@@ -30,6 +30,18 @@ class AttachmentFormRequest extends Request
return auth()->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
*/