I send from a controller this query:
$tareas = $this->Tests->Tareas->find('list', [
'limit' => 200,
'keyField' => 'id',
'valueField' => 'Fecha'
]);
The valueField 'Fecha' is a date in my database.
So far so good, but in the view this date field show in 'M-d-Y' format and i want 'dd-MM-yyyy' format.
The problem is that i use input for show a list of dates and i don't know to change the format.
My view have:
echo $this->Form->input('tarea_id', [
'options' => $tareas,
]);
How i can to change this date format in $tareas? I try with:
Cake\I18n\I18n::locale('es-ES');
But this only sawpping order of day by month.
Thank you very much in advance.