
@foreach ($suggestions as $value)
<option value="{{ $value->id }}">{{ $value->title }}</option>
@endforeach <option
value="{{ $value->id }}"
@if($value->id === $youId)
selected
@endif
>
{{ $value->title }}
</option> {{ Form::select('your_select_name', $suggestions, $youId, ['class' => 'your-select-class']) }}