is there a way to make tabs filter optional according to roles
i have a teacher role and admin role, i want a tab filter only when i login as an admin, if i login as a teacher tab filter on the resource is not showing, is there a way to do that? thanks.
Solution:Jump to solution
Given that the
getTabs()
method returns the tabs you need as an array, You can easily customize the return value based on the user role.
```php
public function getTabs(): array
{...2 Replies