['file', 'mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000'], ]; } /** * Since saveDocuments() expects an array of uploaded files, * we need to convert it to an array before uploading. * * @return mixed */ public function getFile() { if (gettype($this->file) !== 'array') { return [$this->file]; } return $this->file; } }