Skip to content Skip to sidebar Skip to footer

Cakephp 3 Date Input Format

im starting upgrading my Cake version from 2.x to 3.x, so my problem is in the date input on the submit form: 1) I need that the format date will be DMY, but it shows YMD I've been

Solution 1:

easiest way is

$this->Form->templates(
  ['dateWidget' => '{{day}}{{month}}{{year}}']
);
echo $this->Form->input('date', ['type'=>'date']);

Post a Comment for "Cakephp 3 Date Input Format"