{{-- resources/views/filament/pages/auction-monitor.blade.php --}} {{-- Stats row --}}
@foreach ([ ['label' => 'Active Auctions', 'value' => $this->stats['active_auctions'] ?? 0, 'color' => 'amber'], ['label' => 'Pending Offers', 'value' => $this->stats['pending_offers'] ?? 0, 'color' => 'blue'], ['label' => 'Accepted Today', 'value' => $this->stats['accepted_today'] ?? 0, 'color' => 'green'], ['label' => 'Expired Today', 'value' => $this->stats['expired_today'] ?? 0, 'color' => 'red'], ['label' => 'Cascaded Today', 'value' => $this->stats['cascaded_today'] ?? 0, 'color' => 'purple'], ['label' => 'Failed Today', 'value' => $this->stats['failed_today'] ?? 0, 'color' => 'red'], ] as $stat)

{{ $stat['label'] }}

{{ $stat['value'] }}

@endforeach
{{-- Tab switcher --}}
@foreach (['active' => 'Active Auctions', 'history' => 'History', 'offers' => 'All Offers'] as $tab => $label) @endforeach
{{ $this->table }}