hi, i am trying to append data into cakephp resultset.
I am fetching data as $profile = $this->Profiles->find()->where(['user_id' => $id])->hydrate(false)->first()
query returning
[id] => 233
[name] => amit
[email] => 1041391266@gmail.com
[profile_image] =>
[bg_color] => #31665c
[status] => 1
Now i want to append a column in this data as
[id] => 233
[name] => amit
[email] => 1041391266@gmail.com
[profile_image] =>
[bg_color] => #31665c
[status] => 1
[‘internal’] => 1
But i dont know how to execute that.