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) , but what is the route?
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))
            ]);

I tried several routes with no success, the one you see is what artisan routes:list tells me
Was this page helpful?