Adds three resources under a new "Forecasting" navigation group: a full-CRUD WatchedEventResource for the Layer 5 volatility detector, plus read-only WeeklyForecastResource and BacktestResource so the ridge model output and its calibration can be inspected without SQL. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
17 lines
346 B
PHP
17 lines
346 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Backtests\Pages;
|
|
|
|
use App\Filament\Resources\Backtests\BacktestResource;
|
|
use Filament\Resources\Pages\ListRecords;
|
|
|
|
class ListBacktests extends ListRecords
|
|
{
|
|
protected static string $resource = BacktestResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|