Laravel刀片下拉列表类属性不工作。
我在文档中找不到任何对类或为选择/下拉列表分配属性的引用。
http://www.laravel.com/docs/html#下拉列表
尝试的例子:
{{ Form::select('product_id', $productList, array('class'=>'form-control')) }}
{{ Form::select('product_id', $productList, $attributes = array('class'=>'form-control')) }}
两者都返回相同的html,但没有class
属性:
<select id="product_id" name="product_id">
... Option Stuff ...
</select>
{{ Form::select('product_id', $productList, null, array('class' => 'form-control')) }}
第三个参数是当前所选选项的键。默认值为NULL。