How to delete [index] resource page?

I have a resource named SeriesResource for which I only want the view page as
create
and edit operations are handled via parent's ResourceManager. When I remove the index entry from the
getPages
of the resource, it throws the following error.
Route [filament.admin.resources.content.series.index] not defined.


Following is the code for my SeriesResource
public static function getPages(): array
{
    return [
        // Commenting the index page throws an exception
        // 'index' => Pages\ListSeries::route('/'),
        // 'create' => Pages\CreateSeries::route('/create'),
        'view' => Pages\ViewSeries::route('/{record}'),
        // 'edit' => Pages\EditSeries::route('/{record}/edit'),
    ];
}
Was this page helpful?