laravel | html - 如何基于db字段在表单中设置默认选择选项?

时间:2017-04-04 17:26:38

标签: html5 forms laravel select laravel-5.4

我正在使用laravel 5.4,我在记录更新表单中有一个性别选择字段。 我已经获得了更新记录的性别价值。 它是{{$customer_profile->gender}}

但我无法弄清楚如何根据{{$customer_profile->last_name}}m

f值在表单中设置此选择字段的默认值
 <div class="form-group">
      <label class="control-label">Gender</label>
             <select class="form-control" name="gender">
                     <option value="m">Male</option>
                     <option value="f">Female</option>
             </select>
 </div>

请帮忙

1 个答案:

答案 0 :(得分:4)

我猜您的意思是如何根据selected值设置$customer_profile->gender属性。你可以这样做:

<option value="m" {{ $customer_profile->gender === 'm' ? 'selected' : '' }}>Male</option>
<option value="f" {{ $customer_profile->gender === 'f' ? 'selected' : '' }}>Female</option>