@extends('admin.layouts.app') @section('styles') @endsection @section('content')
Manage Events + Create Event

Live Events Now

@if ($live->isNotEmpty()) View All Live @endif
@forelse ($live as $league) @include('admin.leagues.partials._live_card', ['league' => $league]) @empty

No live auctions right now.

@endforelse
Upcoming Auctions
Past Events
@forelse ($upcoming as $league) @include('admin.leagues.partials._list_item', [ 'league' => $league, 'detailRoute' => route('admin.leagues.upcoming', $league), ]) @empty

No upcoming auctions found.

@endforelse
@endsection @section('scripts') @endsection