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>
20 lines
441 B
PHP
20 lines
441 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\WatchedEvents\Pages;
|
|
|
|
use App\Filament\Resources\WatchedEvents\WatchedEventResource;
|
|
use Filament\Actions\DeleteAction;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditWatchedEvent extends EditRecord
|
|
{
|
|
protected static string $resource = WatchedEventResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
DeleteAction::make(),
|
|
];
|
|
}
|
|
}
|