Я пытаюсь показать столбец полного имени с firstName и lastName от объекта. Как я могу это сделать?
Вот мой Entity и Admin.php:
class test{
private firstName;
//another properties
private lastName;
}
Администратор
protected function configureListFields(ListMapper $listMapper){
$listMapper
->add('id',null)
->add('Full name'); //I want to show the column like this (Full name = firstName + lastName)
}