Laravel 5.2下拉默认动态

时间:2016-01-12 20:00:02

标签: php laravel-5.2

请先查看截图。 enter image description here

我正在尝试编辑产品类型名称。但是当我进入编辑部分时,我想要选择该产品的产品类别,就像我们在html标签中所做的那样,例如(<input value="{{ $productType->product_type_name }}"/>)。因此,对于产品类型Gold,下拉菜单应显示Jewelry,而不是显示第一个类别名称(即食品)。此外,对于产品类型木,产品类别应显示家具。现在我应该如何重写以下代码,以便它始终不显示第一个类别名称?

{!! Form::select('product_category_id',$CategoryList,null,['class' => 'form-control']) !!}

1 个答案:

答案 0 :(得分:0)

您可以将下拉列表传递给选定的默认值 -

{!! Form::select('product_category_id',$CategoryList,$productType->product_type_name,['class' => 'form-control']) !!}

此处提供更多信息,https://laravelcollective.com/docs/5.2/html