{{ $title }}
@if (! $followUsers->count())
{{ $emptyMessage }}
@else
@foreach ($followUsers->slice(0, $limit) as $user)
{{-- User Badge --}}
{{ $user->name }}
@endforeach
@if ($followUsers->count() > $limit)
{{-- Count Badge --}}
{{ $followUsers->count() }} total
@endif
@endif
@if ($followUsers->count() > $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