© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
5 replies
Panda

How to delete [index] resource page?

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


Following is the code for my
SeriesResource
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'),
    ];
}
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'),
    ];
}
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Edit page as Index resource page
FilamentFFilament / ❓┊help
3y ago
Form in resource index page
FilamentFFilament / ❓┊help
2y ago
Edit resource page as the page index
FilamentFFilament / ❓┊help
3y ago
how refresh page resource index after imported action
FilamentFFilament / ❓┊help
15mo ago