I came across something that i hope someone has a solution for. I have a form with a file upload that allows designspecific files (such as psd, ai, eps, pdf). With the standard Laravel mimes validation. This is ok for all files except EPS.
Somehow EPS is not identified as application/postscript but as application/octet-stream. So if I put eps in the mimes list then it will not be able to upload an eps file.
When the mimelist check is turned off and it accepts all files the eps file is saved as a bin file? I understand that this is probably because of the application/octet-stream identification.
Does anyone have a solution for this? preferably without changing core laravel features.
cheers