示例#1
0
文件: Guest.php 项目: morilog/acl
 /**
  * @return Collection
  */
 public function getRoles()
 {
     return Role::where('name', 'guest')->get();
 }
示例#2
0
 /**
  * @return \Illuminate\Support\Collection
  */
 public function getAllRoles()
 {
     return $this->roleModel->newQuery()->get();
 }