laravel 集体 select 的默认值

Default value for laravel collective select

我有一个Laravel collectiveselect如下:

{!! Form::select('phone', $numbers, $title, ['class' => 'phone-select2 col4', 'id' => 'phone']) !!}

我想将下拉列表的默认值作为与 $numbers 分开的变量传递。因此,已将其作为 $title 传递,但由于它不在 $numbers 中而无法正常工作。那么,如何为其传递默认值?

您要查找的是占位符。 https://laravelcollective.com/docs/6.x/html#drop-down-lists

根据文档,您可以将默认值设置为 null 并提供占位符属性作为第四个参数的一部分:

['class' => 'phone-select2 col4', 'id' => 'phone', 'placeholder' => 'Pick an option']