Advertisement
Guest User

php laravel

a guest
Jan 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1.             <div class="form-group col-md-8">
  2.                 <label>Exercicio</label>
  3.                 <select name="especificidade[]" multiple="multiple" class="form-control select-search">
  4.                     {{$i=0}}
  5.                     @foreach($exercs as $item)
  6.                 <option value="{{ $item->descricao }}" @if($item->descricao ==$exer[$i]) selected @endif>{{$item->descricao}}</option>
  7.                         {{$i++}}
  8.                     @endforeach
  9.                 </select>
  10.             </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement