예제 #1
0
파일: Guest.php 프로젝트: morilog/acl
 /**
  * @return Collection
  */
 public function getRoles()
 {
     return Role::where('name', 'guest')->get();
 }
예제 #2
0
파일: RoleManager.php 프로젝트: morilog/acl
 /**
  * @return \Illuminate\Support\Collection
  */
 public function getAllRoles()
 {
     return $this->roleModel->newQuery()->get();
 }