提问者:小点点

Laravel 4刀片下拉列表类属性


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>

共1个答案

匿名用户

{{ Form::select('product_id', $productList, null, array('class' => 'form-control')) }}

第三个参数是当前所选选项的键。默认值为NULL。