@php
$firstFollow = $following->getCollection()->first();
$latestFollowedAt = $firstFollow && !empty($firstFollow->followed_at)
? \Carbon\Carbon::parse($firstFollow->followed_at)->diffForHumans()
: null;
$latestFollowedName = $firstFollow ? ($firstFollow->name ?: $firstFollow->uname) : null;
@endphp
Following
{{ number_format($summary['total_following']) }}
People you currently follow
Mutual follows
{{ number_format($summary['mutual']) }}
People who follow you back
One-way follows
{{ number_format($summary['one_way']) }}
People you follow who do not follow back
Latest followed
{{ $latestFollowedName ?? '—' }}
{{ $latestFollowedAt ?? 'No recent follow 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' => 'Everyone I follow'],
['value' => 'mutual', 'label' => 'Mutual follows'],
['value' => 'one-way', 'label' => 'Not following me back'],
];
@endphp
{{ number_format($following->count()) }} visible on this page
@if($filters['q'] !== '')
Search: {{ $filters['q'] }}
@endif
@if($filters['relationship'] !== 'all')
{{ $filters['relationship'] === 'mutual' ? 'Mutual follows only' : 'Not following you back' }}
@endif
@if($following->isEmpty())
No followed creators match these filters
Try resetting the filters, or discover more creators to build a stronger network.
@else
@foreach($following as $f)
@php
$displayName = $f->name ?: $f->uname;
$profileUsername = strtolower((string) ($f->username ?? ''));
@endphp
Uploads
{{ number_format((int) $f->uploads) }}
Relationship
{{ $f->follows_you ? 'Mutual follow' : 'You follow them' }}
{{ $f->follows_you && !empty($f->follows_you_at)
? 'They followed you ' . \Carbon\Carbon::parse($f->follows_you_at)->diffForHumans()
: 'They do not follow you back yet' }}
View profile
@endforeach
{{ $following->links() }}
@endif