Level 50
if you created policy for User model then yes: https://nova.laravel.com/docs/1.0/resources/authorization.html#policies
See who can see users:
public function view(User $user, User $model)
{
return $user->role == 'admin';
}
In this case only users with role admin can see them.
Maybe you created policies but have no matching roles?
Hope it helps!