コード例 #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();
 }