@extends('layouts.nova') @section('content')

Creators

Rising Creators

Creators gaining momentum with the most views over the last 90 days.

Top Creators
@php $offset = ($creators->currentPage() - 1) * $creators->perPage(); @endphp @if ($creators->isNotEmpty())
# Creator Recent Views
@foreach ($creators as $i => $creator) @php $rank = $offset + $i + 1; $profileUrl = ($creator->username ?? null) ? '/@' . $creator->username : '/profile/' . (int) $creator->user_id; $avatarUrl = \App\Support\AvatarUrl::forUser((int) $creator->user_id, null, 40); @endphp
@if ($rank === 1) 1 @elseif ($rank === 2) 2 @elseif ($rank === 3) 3 @else {{ $rank }} @endif
{{ $creator->uname }}

{{ $creator->uname }}

@if($creator->username ?? null)

@{{ $creator->username }}

@endif
{{ number_format($creator->total) }}
@endforeach
{{ $creators->withQueryString()->links() }}
@else

No rising creators found yet. Check back soon!

@endif
@endsection