{{-- Card Header --}}

{{$label}}

@if($users->count() === 0)
{{__('nothing here yet')}}
@else
@foreach($users->slice(0, $limit) as $user) {{-- User Badge --}}
{{$user->name[0]}} {{-- tooltip --}}
{{$user->name}}
@endforeach @if($users->count() > $limit) {{-- Count Badge --}}
+{{$users->count()-$limit}}
{{$users->count()}} total
@endif
@endif @if($users->count() > $limit) {{-- View all button --}}
@endif {{-- view all dialog --}}

{{$parentUserName}}'s {{$label}}

@foreach($users as $user) {{-- user tile --}}
{{$user->name}}
{{$user->name}} {{__("Member Since")}} {{ $user->created_at->format("M d, h:m a") }}
@if(auth()->id() != $user->id) @if(count($authFollowingIds) !== 0 && in_array($user->id, $authFollowingIds)) {{-- following button --}} @else {{-- follow button --}} @endif @else {{-- 'you' card for auth user in list --}} @endif
@endforeach
{{__('Close')}}