I\'m trying to upload a MP3 file to a Laravel application and have ran into an issue where even though the file has an attribute set to \"audio/mpeg\" it is uploaded as a \"
I was having this issue with Laravel 5.4. I fixed by setting post_max_size and upload_max_filesize in my php.ini to a higher value.
post_max_size
upload_max_filesize
php.ini
After that, I actually had to do a hard restart of OSX before it would actually reflect in the application properly.