/**
  * @inheritdoc
  */
 public function execute(User $user, Resource $resource = null)
 {
     if (!$user instanceof LatticeUser) {
         throw new \Exception("User should be of lattice type");
     }
     return $user->permission()->level() > 5;
 }