- @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 patient-suggest text-nowrap {{ $activeSet ? '' : 'active' }}"
- href="" data-target-uid="{{$client->uid}}" {!! $client->mcp ? '' : 'title="Unclaimed Patient"' !!}>
- <img src="/img/bluecircle.png" alt="Unclaimed Patient" class="mr-1 {{$client->mcp ? 'claimed' : 'unclaimed'}}">
- {{$client->displayName()}}
- {!! $client->cell_number ? '<span class="text-sm text-secondary ml-1">(' . $client->cell_number . ')</span>' : '' !!}
- </a>
- <?php $activeSet = true; ?>
- @endforeach
|