Total followers
{{ number_format($summary['total_followers']) }}
People currently following your profile
Followed back
{{ number_format($summary['following_back']) }}
Followers you also follow
Not followed back
{{ number_format($summary['not_followed']) }}
Followers still waiting on your follow-back
Newest follower
{{ $newestFollowerName ?? '—' }}
{{ $latestFollowedAt ?? 'No recent follower activity' }}
@php
$sortOptions = [
['value' => 'recent', 'label' => 'Most recent'],
['value' => 'oldest', 'label' => 'Oldest first'],
['value' => 'name', 'label' => 'Name A-Z'],
['value' => 'uploads', 'label' => 'Most uploads'],
['value' => 'followers', 'label' => 'Most followers'],
];
$relationshipOptions = [
['value' => 'all', 'label' => 'All followers'],
['value' => 'following-back', 'label' => 'I follow back'],
['value' => 'not-followed', 'label' => 'Not followed back'],
];
@endphp
{{ number_format($followers->count()) }} visible on this page
@if($filters['q'] !== '')
Search: {{ $filters['q'] }}
@endif
@if($filters['relationship'] !== 'all')
{{ $filters['relationship'] === 'following-back' ? 'Following back only' : 'Not followed back' }}
@endif
@if($followers->isEmpty())
No followers match these filters
Try resetting the filters, or discover more creators and activity to grow your audience.
@else
{{ $followers->links() }}
@endif