/admin control panel as / and allow anyone to filter or view it. It seems like something that should be easy but I'm missing it.->path('/') because you said you want it at '/'->login()Authenticate class from ->authMiddleware()AccountWidget (because it'll throw a bunch of errors about unable to find AvatarUrl and user Name, when its template tries to render for a non-logged-in "user")'/' route from routes/web.php else it will conflict.)->resources([ResourceClassName::class]) to the panel.viewAny() and view() methods, change the User $user param to ?User $user so that it's optional (ie: guest allowed), and return true;.$user is not null, or $user->hasRole('Admin') (if you have a hasRole() method on your User model), etc.hidden() or visible() features in the Resource definitions of fields/actions/etc to control who can access them.