file = $file; } public function passes($attribute, $value) { $extension = strtolower($this->file->getClientOriginalExtension()); return in_array($extension, ['csv','xls','xlsx','pdf','zip','doc','docx','odt']); } public function message() { return 'The excel file must be a file of type: csv, xls, xlsx, pdf, zip, doc, docx, odt'; } }