我尝试用这样的数据和默认选择的值填充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版本
答案 0 :(得分:0)
好像您正在使用Laravel Collective的表单助手。
在这里https://laravelcollective.com/docs/5.4/html#drop-down-lists
echo Form::select('size', ['L' => 'Large', 'S' => 'Small'], 'S');