How to set default value in dropdown selected in curd-edit?

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?

Have you tried default option?

Yes I also tried default option but it also not worked there.

is this still an issue?