I have an Address entity which requires a country. In the associated form I am using Symfony's CountryType which displays a user-friendly selection of countries and stores its abbreviation in the entity (e.g. DE for Germany or CH for Switzerland).
To display the address' country in the show action of the admin panel, I am using the following line in the easy_admin.yaml
:
- { property: country, label: 'address.entity.country' }
Problem:
This only displays the abbreviation and not the actual name of the country. How can I change that?
Country in Address entity:
/**
* @ORM\Column(type="string", length=255)
*/
private $country;