Panel with public access (without login)
Hello, is it possible to create a panel that does not require a logged user to access it? I have tried to do it by creating a new filament-panel, removing the login() method and the authenticate class from the auth middleware. But when I enter the panel url from the browser, it shows me a Laravel 500 error page.
5 Replies
I remember seeing an example of this a few months ago. The implementation has a "guest" user in the DB, used to automatically log in anonymous users into the public panel.
I think there was an example from LaravelDaily or Filamenttips
where can I find this example?
Try to remove
->authMiddleware([
Authenticate::class,
])