@extends('admin.layouts.app') @section('styles') @endsection @section('content')
Registered Players
{{ number_format($registeredPlayers) }}
Registered Team Owners
{{ number_format($registeredTeamOwners) }}
Auction Status
{{ $auctionStatus['value'] }} {{ $auctionStatus['label'] }}
Active Sponsors
{{ number_format($activeSponsors) }} Active

Quick Actions

Upcoming Auctions

View All
@forelse ($upcomingAuctions as $auction)
Auction

{{ $auction->name }}{{ $auction->season ? ' ยท ' . $auction->season : '' }}


Start {{ $auction->auction_date->format('M d, Y h:i A') }}

@empty

No upcoming auctions scheduled.

@endforelse

Notifications & Action

Mark all as read
@forelse ($notifications as $notification)
@if ($notification['type'] === 'warning') @else @endif
{{ $notification['text'] }}
@empty
You're all caught up. No pending actions.
@endforelse
@endsection @section('scripts') @endsection