© 2026 Hedgehog Software, LLC
// TaskResource.php public static function getPages(): array { return [ 'index' => Pages\ScheduleTask::route('/schedule'), ]; }
getActions()
protected function getActions(): array { return [ Action::make('new_task') ->action(function (array $data): void { ... }) ->form([ ... ]), ]; }