I have two models with global scopes.
#[ScopedBy(UserScope::class)]
class User {}
#[ScopedBy(ViewerScope::class)]
class Viewer extends User {}
The scope just checks if class instance has is_viewer === true or not. How can I disable/ignore parent scope in child model? I tried both approaches with #[ScopedBy...] and applying it in a booted() model methods. No luck with both(