Laravel4权限定义能力

时间:2014-02-16 21:49:26

标签: php laravel laravel-4 authority

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

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

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

1 个答案:

答案 0 :(得分:0)

尝试以这种方式传递:

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