I have this:
<?php echo $this->Form->input('Schedule.0.end_date', array(
'minYear' => date('Y'),
'maxYear' => date('Y')+5
)); ?>
I would like to set the default date to something other than today. Is this possible with CakePHP's form helper?
I found a post that showed how do to it with TIME - but trying something similar by setting "day", "month", "year" does nothing.