Personal I'm updating a project from a client that was originally made in VB.NET and I'm moving on to Laravel 5.1. It's all right only a problem with displaying certain images that have in the folder name some accented character. Example:
<img src="uploads/marcas/Imóveis/2013/5/s5erntjnoiorawwuegltdjfv000.jpg">
If I rename the Properties for Real Estate folder without the accent and make the path to
<img src="uploads/marcas/Imóveis/2013/5/s5erntjnoiorawwuegltdjfv000.jpg">
It works fine. But as there are many but many folders with accented names I would like to see if there is any way it works without having to rename the folders.
Thank you