我刚开始使用Laravel。我不了解我在Google上搜索的教程。
这是第一个下拉列表:
{!! Form::select('attribute_type_id',$attributes, null, ['class' => 'form-control']) !!}
这就是我在Controller中获得$attributes
的方式。
$attributes = AttributeType::pluck('attribute_type', 'id');
return view('product_attributes.create', compact('id','products', 'attributes'));
这是第二个下拉列表。
{!! Form::select('attribute_sub_type_id', null, ['class' => 'form-control']) !!}
AttributeType(id, attribute_type)
的列。AttributeSubType(id, attribute_type_id, attribute_sub_type)
的列。