Problems with accents Laravel 5 server

2

I have this:

<html lang="es">
<meta charset="utf-8">

also in config/database I have 'charset' => 'utf8' .

Still I have problems with the accents.

In the local DB tests the problem is working with the DB of the server.

    
asked by Stephania 19.10.2016 в 21:10
source

1 answer

1

You could use utf8_decode("tu campo con acentos") to show the values and that you do not get "strange" symbols with the ñ or the accents.

    
answered by 19.10.2016 / 21:37
source