According to this URL Set Default Text in a Select (drop-down) box/menu I need add disabled
attribute for the placeholder in symfony. This is my code.
$builder
->add('name', 'text', array(
'label' => 'Business Name',
))
->add('country', 'entity', array(
'class' => 'AppBundle:Country',
'property' => 'name',
'placeholder' => 'Please select',
));
Now I need to add disabled
like <option value="" disabled>Please select</option>
How can I do it? What is the best way to do that?