Laravel-使用相同的v模型进行选择

时间:2018-08-30 20:38:43

标签: laravel v-model

我需要在我的类别和子类别选择表单中放置v模型。我很困惑

我的观点

 <div class="form-group">
     {!! Form::label('account_id', 'Parent Category:')!!}
     {!! Form::select('account_id', $allCategories,  ['placeholder' => 'Choose Category'])!!}
 </div>
 <div class="form-group">
     {!! Form::label('children', 'Child category:')!!}
     {!! Form::select('children', [], null, ['placeholder' => 'Choose child category'])!!}
</div>

也 如果选择了子类别中的(v-model),则不要考虑类别中的v-model。

谢谢

0 个答案:

没有答案