Call to undefined method Filament\Resources\Pages\PageRegistration::shouldRegisterNavigation()

I am getting folloiwng error when I am trying to add getRecordSubNavigation method in the resource

Call to undefined method Filament\Resources\Pages\PageRegistration::shouldRegisterNavigation()


 protected static SubNavigationPosition $subNavigationPosition = SubNavigationPosition::Top;
    
public static function getRecordSubNavigation(Page $page): array
    {
        return $page->generateNavigationItems([
            Pages\ViewRecord::route('/{record}'),
            Pages\EditRecord::route('/{record}/edit'),
        ]);
    }
Was this page helpful?