@extends('layouts.admin.app') @section('title', 'My Event Auction') @push('style') @endpush @section('content')
@include('admin.layouts.alert')

Live Events Now

{{-- View All Live --}}
@forelse ($live as $item)
● Live Now
{{ $item->name }}
@if ($item->location) {{ $item->location }} @endif @if($item->updated_at) Started {{ $item->updated_at->copy()->setTimezone('Pacific/Auckland')->format('h:i A') }} @endif
View Auction
@empty
No live events right now.
@endforelse
Upcoming Auctions
Past Events
@forelse ($upcoming as $item)

{{ $item->name }}

@if ($item->location) {{ $item->location }} @endif {{ utcToNz($item->auction_date, $item->auction_start_time) }}
{{ $item->teams_count }} Teams
{{ $item->players_count }} Players Registered
Edit View Details {{-- View Details --}}
@empty
No upcoming auctions at the moment.
@endforelse
@endsection @push('script') @endpush