程序动态选择

时间:2019-05-22 18:10:58

标签: javascript php jquery laravel

我有一个选择,它充满了从数据库中获取的数据,我要做的是用户选择一个选项将其发送到数据库,并且该选项不再出现在选择中,以避免重复数据库中的字段。

enter image description here

在gif中,我只是说“ Queso”的选择已经记录在我的数据库中,我不想在我的选择中显示更多

我知道在laravel迁移中可以使用unique()来完成,但是我还不太清楚该方法,任何可以帮助我的方法都会为我服务。

这是视图

<div class="up">
  <div class="container">
    <div class="row">
      <div class="col-sm">
  <dd>Ahora selecciona los ingredientes del plato: </dd>
  <select name="ingrediente_id" id="ingrediente_id" class="form-control">
  <option selected>[ SELECCIONA UN INGREDIENTE ]</option>
   @foreach( $ingredientes as $ingrediente )
  <option value="{{ $ingrediente->id }}">{{ $ingrediente->nombre }}</option>
 @endforeach
</select>
</div>

我正在使用laravel 5.8,jQuery和Javascript

0 个答案:

没有答案