Use Filament Panel without authenticated user
Is there a technique for setting up a filament panel so that it can be accessed by guest to the website?
i.e. you can browse a Github project without being logged in but the actions are all disabled
6 Replies
On your
User
model, you need to have public function canAccessPanel(Panel $panel): bool
defined in production
you could just return true
and then use policies to control who can view/modifyI'm talking about someone who isn't logged in at all
oh
https://discord.com/channels/883083792112300104/1164572492812255353
looks like this is what you need
Nice! thanks
You're welcome
looks like you can control it for a specific resource