{{ $title }}

@if ($this->followUsersCount === 0)
{{ $emptyMessage }}
@else
@foreach ($followUsers->take($limit) as $user) {{-- User Badge --}}
{{ $user->name }}
{{ $user->name }}
@endforeach @if ($this->followUsersCount > $limit) {{-- Count Badge --}}
{{ $this->followUsersCount }} total
@endif
@endif @if ($this->followUsersCount > $limit) {{-- View All Button --}}
@endif {{-- View All Dialog --}} @push('modals')

{{ __($dialogTitle, ['name' => $profileUser->name]) }}

@foreach ($followUsers as $user)
{{ $user->name }}
{{ $user->name }} {{ __("Member Since") }}
@if (auth()->check() && auth()->user()->id !== $user->id) @endif
@endforeach
{{ __('Close') }}
@endpush