0

我在 Laravel4 和权威(https://github.com/machuga/authority-l4)中定义能力有问题。权限配置中的该规则应该有效:

$authority->allow('manage', 'Post', function($self, $post){
  // return ($post->sth ... )
});

但问题在于 $post,它始终为空。

4

1 回答 1

0

尝试以这种方式传递它:

$authority->allow('manage', 'Post', function($self) use ($post) {
  // return ($post->sth ... )
});
于 2014-02-16T21:51:45.873 回答