check(); } public function rules() { return [ 'file' => [ 'required', 'file', 'mimes:jpg,jpeg,png,pdf,doc,docx,xls,xlsx,txt', 'mimetypes:image/jpeg,image/pjpeg,image/png,' . 'application/pdf,application/msword,' . 'application/vnd.openxmlformats-officedocument.wordprocessingml.document,' . 'application/vnd.ms-excel,' . 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,' . 'text/plain', 'max:51200', ], ]; } }