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

Creator Spotlight

All creators
@foreach ($creatorItems as $creator) {{ $creator['name'] ?? 'Creator' }}

{{ $creator['name'] ?? 'Creator' }}

Uploads {{ number_format((int) ($creator['uploads'] ?? 0)) }} @if ((int) ($creator['weekly_uploads'] ?? 0) > 0) {{ number_format((int) ($creator['weekly_uploads'] ?? 0)) }} this week @endif Views {{ number_format((int) ($creator['views'] ?? 0)) }} @if ((int) ($creator['awards'] ?? 0) > 0) Awards {{ number_format((int) ($creator['awards'] ?? 0)) }} @endif

View profile
@endforeach
@endif