- @if(!count($clients))
- <span class="d-block no-suggest-items">No matching patients!</span>
- @endif
- <?php $activeSet = false; ?>
- @foreach($clients as $client)
- <a class="d-block suggest-item {{ $activeSet ? '' : 'active' }}" href="" data-target-uid="{{$client->uid}}">{{$client->displayName()}}</a>
- <?php $activeSet = true; ?>
- @endforeach
|