After reading the docs (at: panel.menu | Kirby CMS) I thought to quickly add a menu entry in the panel left-side menu “Pages”, listing all my pages. But I get this error: Could not find Panel view for route: pages
Would be good to see the context around the code you shared to see if it’s being used correctly in the config.
I don’t think that’s necessarily the issue related to the error message you get but currently your menu entry is also missing either a link, dialog or drawer. It’s not quite clear what it should do when clicked.
Sorry, you’re right, here is my complete config, the objective is to show a list of all my pages by clicking the “Pagina’s” (top) menu item in the main menu.
Have you tried adding an actual link to that menu entry? Right now it’s neither setting a link or a dialog/drawer route, so it’s not clear what should/could happen when the menu entry is clicked.
Right, you need a link to an existing page here, you cannot show a “list of all pages”, unless the page you link to contains that list, usually, the site entry takes care of linking to a list of all relevant pages, or you would have to create a custom area.
Thanks for that texnixe, meaning there is no such internal Kirby route: /panel/pages that’s what I made up (:- (with the help of AI gemini 2.5) and got me confused.
If we want a list of pages we use: /panel/site or we create a specific list page?