Не могу получить данные "Контакт", отображаемые в форме редактирования.В представлении «Изменить» отображаются данные о волонтерах и людях, но не данные о контактах.Чтобы получить данные, я должен изменить "echo $ this-> Form-> input ('direccion');"по echo $ this-> Form-> input ('persona.contacto.direccion');но при этом контактная форма не сохраняется.Какое решение?
В моей форме
echo $this->Form->input('direccion'); echo $this->Form->input('persona.nombre'); echo $this->Form->input('persona.voluntario.cv');
В моей функции редактировать контроллер
$particulare = $this->Particulares->get($id, [
'contain' => ['Voluntarios','Beneficiarios','Personas'=>['Contactos'=>['Paises','Provincias','Localidades']]]
]);
if ($this->request->is(['patch', 'post', 'put'])) {
$particulare = $this->Particulares->patchEntity($particulare, $this->request->getData());
if ($this->Particulares->save($particulare)) {
$this->Flash->success(__('Éxito! Los cambios han sido guardados correctamente'));
return $this->redirect(['action' => 'index']);
}
$this->Flash->error(__('Los cambios no pudieron ser guardados. Por favor, inténtelo de nuevo.'));
}