{{ $title }}
@if ($this->followUsersCount === 0)
{{ $emptyMessage }}
@else
@foreach ($followUsers->take($limit) as $user)
{{-- User Badge --}}
{{ $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)
@if (auth()->check() && auth()->user()->id !== $user->id)
@endif
@endforeach
{{ __('Close') }}
@endpush