echo $form->input(
'country_id',
array(
'type' => 'select',
'label' => __('Country *', true),
'empty' => 'Select' ,
'order' => array('countries.name ASC')
)
);
Country list are not showing up in Ascending Order. Please anybody help me to find out an error or good way to show country list in ascending order.
You need to add
orderto yourfindquery: