canAccessPanel() Not being called
I am triying to secure access but my canAccessPanel() is not being called. I am using FilamentUser contract in User. And below is my code. to test i am always retirnung false but i am still able to access panel. I cleared all caches.
Solution:Jump to solution
Error was due to using the Custom authentication middleware in all my panels. I had commented out Authenticate::class from all auth middleware. Filament native authenticate middleware calls canAccessPanel() method directly. Whereas I implemented CustomAuthenticate::class and removed filament one which caused and issue. Fix was to include this below peice of code in my CustomAuthentciate. ```$panel = Filament::getCurrentPanel();
abort_if(
$user instanceof FilamentUser ?
(! $user->canAccessPanel($panel)) :...
6 Replies
Is your environment
local
?Hi @Dennis Koch . I tested in both local and production.
I suggest looking if you have a piece of code that does this:
Gate::before(function ($user, $ability) {
return $user->super_admin == 1 ? true : null;
});
But that is just a hunchDo you implement the interface on the user model?
Hi @Dennis Koch I have custom authenticate middleware. Can this be an issue? Unable to figureout issue.
I am using like in all panels.
Yes I checked. CanAccessPanel is now called when i commented out my Customauthenticate::class and reused filament Authenticate::class. not sure how to fix this.
Thsnks I got the fix. I implemented in my CustomAuthenticate middleware and it did what i needed.
Solution
Error was due to using the Custom authentication middleware in all my panels. I had commented out Authenticate::class from all auth middleware. Filament native authenticate middleware calls canAccessPanel() method directly. Whereas I implemented CustomAuthenticate::class and removed filament one which caused and issue. Fix was to include this below peice of code in my CustomAuthentciate.