I'm trying to validate file types in Laravel like this:
'rules' => ['mimes:pdf,bdoc,asice,png,jpg']
Validation works correctly for pdf, png and jpg but does not work for bdoc or asice files (files with those extensions do not pass validation).
My guess is that it probably does not work for those file types because they are not included in the MIME types shown here: https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
Am I correct in that assumption? If so, how can I validate these file types?