cakephp - Cake php table join two fields
one text
Solution:
The answer is :
Adding to the model this function
protected function _getFullName() {
return $this->first_name . ' ' . $this->last_name;
}
I can access full_name
as a field, like:
$persona->full_name
Source