How do I set the default drop-down list?

I encountered such a problem, CakePHP created a drop-down list, but I can not figure out how to set it to the default value, if the user did not choose that the system set the default value by itself. And how can you give it a placeholder, such as that there is no one inside to say “Choose”? Tell me, please, in advance grateful.
At the moment the list has this kind of appearance
Screenshot_1

Code Listing of the drop-down list

$this->Form->select('progress', array([0 => 'One', 1=> 'Two', 2=>'Three']));

https://book.cakephp.org/3.0/en/views/helpers/form.html#common-options-for-specific-controls
and
https://book.cakephp.org/3.0/en/views/helpers/form.html#creating-select-pickers

1 Like