@extends('layouts.admin.app') @section('title', 'Dashboard') @push('style') @endpush @section('content')
Registered Players
{{ $registeredPlayers ?? 0 }} @php($playersChange = $playersChange ?? 0) {{ $playersChange >= 0 ? '+' : '' }}{{ $playersChange }}%
Registered Team Owners
{{ $registeredTeamOwners ?? 0 }} @php($teamOwnersChange = $teamOwnersChange ?? 0) {{ $teamOwnersChange >= 0 ? '+' : '' }}{{ $teamOwnersChange }}%
Auction Status
{{--
Live RUNNING
--}}
{{ $auctionStatus['value'] ?? 'Idle' }} {{ $auctionStatus['label'] ?? 'NONE' }}
Active Sponsors
{{ $activeSponsors ?? 0 }} Stable

Quick Actions

Approve Players

Start Auction

Create Rule

View Reports

Upcoming Auctions

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

{{ $item->name }}


{{ $item->formattedAuctionAt() ? 'Start: ' . $item->formattedAuctionAt() : 'To be announced' }}

View Details
@empty

No upcoming auctions scheduled.

@endforelse

Notifications & Action

{{-- Mark all as read --}}
@foreach ($notifications as $notification)
@if ($notification['type'] === 'warning') @else @endif
{{ $notification['text'] }}
@endforeach {{--
12 player applications pending approval. Review and act.
Sponsor request from MediaGroup India awaiting review.
Auction started for Football League ยท 18 bids placed so far.
--}}
@endsection @push('script') @endpush