Как изменить массив, который произошел с индексом
Мой индекс
public function index()
{
$this->paginate = [
'contain' => ['Photos'],
];
$tareas = $this->paginate($this->Tareas);
$this->loadModel('Categorias');
$categorias = $this->Categorias->find()->all();
$this->set(compact('tareas','categorias'));
}
Я хочу изменить содержимое тар, когда я вызываю эту функцию, чтобы отображать различное содержимое в моем индексе
public function getTareas()
{
$tareas = $this->Tareas->find()->where(['categoria_id'=>$this->request->getData()['idcategoria']])->all();
$this->set(compact('tareas'));
return $this->redirect(['action' => 'index']);
}
Я пробовал следующее, но это не работает