如何在当前的Blade代码中添加下拉框?
这就是我目前所拥有的:
{!! Form::input('text', 'example', old("example", $user->example), array('class' => 'form-control')) !!}
答案 0 :(得分:1)
试试这个:
echo Form::select('size', array('L' => 'Large', 'S' => 'Small'), 'S', array('id' => 'your_id', 'class' => 'your_class'));
其中:
size
:下拉名称,
array
:生成下拉列表的数组,
S
:默认选中的值
之后,您可以将id
,class
,style
传递到以下数组中:
array('id' => 'your_id', 'class' => 'your_class')