How to create a page without Filament layout?
I want to create a page in my admin panel but I don't want it to have Filament layout. How can I do that?
5 Replies
What do you mean by "Filament layout"? The whole topbar, sidebar, etc?
yes
Don't use Filament for it then. Just create a route outside of Filament. I think even if you omit
<x-filament-page>
in the view, the layout will be there.Then how can I add filament authentication and authorizations to it
You could apply them via the route or controller like usually in Laravel. Filament Auth is just
auth()->user()->canAccessFilament()