@forelse($followers as $f)
@php
$icon = $f->icon ?? 'default.jpg';
$uname = $f->uname ?? 'Unknown';
$followerId = $f->user_id ?? null;
@endphp
@empty
No followers yet.
@endforelse
@if(method_exists($followers, 'links'))
{{ $followers->links() }}
@endif
@endsection