- @if(!count($suggestedPros))
- <span class="d-block no-suggest-items">No matching pros!</span>
- @endif
- <?php $activeSet = false; ?>
- @foreach($suggestedPros as $suggestedPro)
- <a native class="d-block suggest-item pro-suggest text-nowrap {{ $activeSet ? '' : 'active' }}" href="#"
- data-target-uid="{{$suggestedPro->uid}}"
- data-name="{{$suggestedPro->displayName()}}">
- {{$suggestedPro->displayName()}}
- </a>
- <?php $activeSet = true; ?>
- @endforeach
|