Manage accounts, assign roles, ban/unban users, and inspect creator revenue, posts & product listings.
| User | Role | Posts | Products | Total Revenue | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
@if($user->creatorProfile && $user->creatorProfile->is_verified)
@endif
{{ $user->email }}
|
@if($user->role === 'admin') Admin @elseif($user->role === 'creator') Creator @else Supporter @endif | {{ $user->creatorProfile ? $user->creatorProfile->posts->count() : '—' }} | {{ $user->creatorProfile ? $user->creatorProfile->shopItems->count() : '—' }} | @if($user->creatorProfile) ${{ number_format($user->creatorProfile->donations->where('payment_status', 'completed')->sum('amount'), 2) }} @else — @endif | @if($user->is_banned) Banned @else Active @endif | @if($user->creatorProfile) Inspect @endif Edit @if(!$user->isAdmin()) @endif |