When you have an array field and save it in the DB it does a nifty json_encode to the array but without the JSON_UNESCAPED_UNICODE option. The data end up like so :
{"en":"\u039d\u03ad\u03b1"}
which is pretty much useless. The solution of course is to json_encode with the JSON_UNESCAPED_UNICODE flag. Is it possible to tell Laravel to add this option before saving the model?
I am trying to avoid using the setNameAttribute mutator as this would be kind of a pain to do it every time i have this type of fields