Laravel 刀片下拉列表类属性不起作用。
我在文档中找不到对类或为选择/下拉列表分配属性的任何引用。
http://www.laravel.com/docs/html#drop-down-lists
试过的例子:
{{ 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>