php - Cakephp 4 Form Helper: Create Individual dropdown for day, month and year

one text

Solution:

Did you try

'type' => 'select'

as documented? Otherwise a custom template might help.

Alternatively, the dropdown default part was moved to Shim plugin See https://github.com/dereuromark/cakephp-shim/blob/master/docs/View/Form.md That should give you the 3.x way of creating such form elements.

Source