I'm having $virtualFields
of users set in the model
public $virtualFields = array(
'fullname' => 'CONCAT(user.firstname, " ", user.lastname)',
[...]
);
I want to access this field in a associated view, but I can load users data like firstname in the other view, but not the combined field fullname.
Do I have to add something into the controller to get this field.