patient-suggest.blade.php 348 B

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