【发布时间】:2013-09-03 01:39:40
【问题描述】:
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>
【问题讨论】:
标签: laravel html-select blade