/**
  * Retrieve a Group by it's name
  *
  * @param string $name
  * @return Group
  */
 public function group($name)
 {
     return $this->group->where(compact('name'))->firstOrFail();
 }