I'm trying to show Full name column with firstName and lastName from entity. How can I do?
Here is my Entity and Admin.php:
class test{
private firstName;
//another properties
private lastName;
}
Admin
protected function configureListFields(ListMapper $listMapper){
$listMapper
->add('id',null)
->add('Full name'); //I want to show the column like this (Full name = firstName + lastName)
}