I'm using sonata admin for my backoffice application. My entity has an integer field, each value has a meaning that I'd like to display in words. For instance, say that it has the opinion field, which can be 0, 1, 2 or 3. 0 means no opinion 1 means I agree 2 means I don't agree 3 means I've got to explain
In my db I store 0, 1, 2 or 3 and on the CRUD interfaces I need to display the string values
How do I do that?