© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•10mo ago•
2 replies
delboy1978uk

what is my custom page route?

maybe a dumb question, however!
i am creating a new page triggered by a table row action for my 'broken parts' resource (on list page
/admin/broken-parts
/admin/broken-parts
) , but what is the route?
public static function getPages(): array
    {
        return [
            'index' => Pages\ListBrokenParts::route('/'),
            'resolve' => Pages\ResolveBrokenPart::route('{record}/resolve'),
        ];
    }
public static function getPages(): array
    {
        return [
            'index' => Pages\ListBrokenParts::route('/'),
            'resolve' => Pages\ResolveBrokenPart::route('{record}/resolve'),
        ];
    }

my table actin is currenttly like this:
->actions([
    Action::make('resolve')
        ->url(fn (ProductionItemBinStatus $record): string => route('admin/broken-parts/{record}/resolve', $record))
            ]);
->actions([
    Action::make('resolve')
        ->url(fn (ProductionItemBinStatus $record): string => route('admin/broken-parts/{record}/resolve', $record))
            ]);

I tried several routes with no success, the one you see is what
artisan routes:list
artisan routes:list
tells me
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

Custom page route
FilamentFFilament / ❓┊help
2y ago
Route to custom page
FilamentFFilament / ❓┊help
3y ago
Route not defined , custom page
FilamentFFilament / ❓┊help
3y ago
Issue With Custom Filament Page Route
FilamentFFilament / ❓┊help
4mo ago