如何填写表格::选择更漂亮?

时间:2016-08-03 11:39:31

标签: laravel laravel-5

我使用以下表格:

 <?=Form::select('stars', array(
                            1 => 1,
                            2 => 2,
                            3 => 3,
                            4 => 4,
                            5 => 5
                        ), null, ["placeholder" => "Stars", "class" => "w-select"]);?>

看起来很糟糕。如何在Form::select中重新格式化数组,键是1到5?

1 个答案:

答案 0 :(得分:2)

使用可以使用选择范围而不是选择。

{!! Form::selectRange('stars', 1, 5, null, ["placeholder" => "Stars", "class" => "w-select"]) !!}

更多详情:https://laravelcollective.com/docs/5.1/html#drop-down-lists