@php $creatorItems = collect(is_array($creators ?? null) ? $creators : [])->filter()->take(4)->values(); $avatarFallback = 'https://files.skinbase.org/default/avatar_default.webp'; @endphp @if ($creatorItems->isNotEmpty())

Suggested Creators

Creators you might enjoy following

Explore all →
@foreach ($creatorItems as $creator)
{{ $creator['name'] ?? 'Creator' }}
{{ $creator['name'] ?? 'Creator' }} @if (!empty($creator['username']))

@{{ $creator['username'] }}

@endif
@if ((int) ($creator['followers_count'] ?? 0) > 0) {{ number_format((int) ($creator['followers_count'] ?? 0)) }} followers @endif @if ((int) ($creator['artworks_count'] ?? 0) > 0) {{ number_format((int) ($creator['artworks_count'] ?? 0)) }} artworks @endif
View Profile
@endforeach
@endif