pro-suggest.blade.php 480 B

12345678910111213
  1. @if(!count($suggestedPros))
  2. <span class="d-block no-suggest-items">No matching pros!</span>
  3. @endif
  4. <?php $activeSet = false; ?>
  5. @foreach($suggestedPros as $suggestedPro)
  6. <a native class="d-block suggest-item pro-suggest text-nowrap {{ $activeSet ? '' : 'active' }}" href="#"
  7. data-target-uid="{{$suggestedPro->uid}}"
  8. data-name="{{$suggestedPro->displayName()}}">
  9. {{$suggestedPro->displayName()}}
  10. </a>
  11. <?php $activeSet = true; ?>
  12. @endforeach