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. ``` public function canAccessPanel(Panel $panel): bool
{
dd('canAccessPanel is being called!');
return false;
$panelId = $panel->getId();
if ($panelId === 'labaiq-team') {
return $this->user_type === 'platform_team_member' && str_ends_with($this->email, '@labaiq.com') && $this->email_verified_at;
}
if($panelId === 'user' || $panelId === 'company'){
return $this->user_type === 'general_user';
}
return false;
}```