让我HTML
选择
<select>
<optgroup label="Fruits">
<option>Orange</option>
<option>Apple</option>
</optgroup>
<optgroup label="Food">
<option>Chicket</option>
<option>Beef</option>
</optgroup>
</select>
现在,我如何在laravel
blade
模板引擎
答案 0 :(得分:17)
试试这个;
{{ Form::select('list', array(
'Fruits' => array('Orange', 'Apple'),
'Food' => array('Chicken', 'Beef'),
))}}
输出应该是你想要的。
要将选择选项的值添加到数组中,请添加'<your_value>' => 'Orange'
。