Creating a page
To create a new page, you can use:/Pages directory of the Filament directory, and a view in the /pages directory of the Filament views directory.
Page classes are all full-page Livewire components with a few extra utilities you can use with the admin panel.
Conditionally hiding pages in navigation
You can prevent pages from appearing in the menu by overriding theshouldRegisterNavigation() method in your Page class. This is useful if you want to control which users can see the page in the sidebar.
mount() method of the page:
Customization
Filament will automatically generate a title, navigation label and URL (slug) for your page based on its name. You may override it using static properties of your page class:getHeader() and getFooter() methods: