具有默认选择值的Laravel集体选择列表

时间:2018-12-17 18:26:14

标签: laravel list select

我尝试用这样的数据和默认选择的值填充Laravel表单选择列表

 @foreach($pesron->state as $state)  
    {{ Form::select('state[]', \App\City::pluck('Description', 'id'), $state->city->Description,['class' => 'form-control'])!!} 
 @endforeach 

我希望$state->city->Description值将默认在选择列表中选择。可能吗?我使用5.7.15版本

1 个答案:

答案 0 :(得分:0)

好像您正在使用Laravel Collective的表单助手。

在这里https://laravelcollective.com/docs/5.4/html#drop-down-lists

echo Form::select('size', ['L' => 'Large', 'S' => 'Small'], 'S');