How to set default value in dropdown selected in curd-edit ?
$optionAttributes[ ] = array(
'label' => 'lable',
'empty' => 'Select',
'name' => 'name ',
'type' => 'select',
'selected' => 'hello',
'options' => $attr_drop,
);
here selected is not working ? How to use selected attribute in cakephp 3 crud-edit?