{{ $title }}
@if ($followUsersCount === 0)
{{ $emptyMessage }}
@else
@foreach ($displayLimit as $data)
{{-- User Badge --}}
{{ $data['user']->name }}
@endforeach
@if ($followUsersCount > $limit)
{{-- Count Badge --}}
{{ $followUsersCount }} total
@endif
@endif
@if ($followUsersCount > $limit)
{{-- View All Button --}}
@endif
{{-- View All Dialog --}}
@push('modals')
{{ __($dialogTitle, ['name' => $profileUser->name]) }}
@foreach ($display as $data)
@if (auth()->check() && auth()->user()->id !== $data['user']->id)
@endif
@endforeach
{{ __('Close') }}
@endpush