Laravel 4 blade drop-down list class attribute

前端 未结 2 1732
轮回少年
轮回少年 2020-12-28 13:35

Laravel blade drop down list class attribute not working.

I cannot find any reference to class or assigning attributes to select / drop-down lists in the documentat

2条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-28 13:55

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

    The third parameter is the key of the currently selected option. Defaults to null.

提交回复
热议问题