section = $section; return $this; } public function getParents() { $query = $this->query->create(); if ($this->section) { $query->filterBySection($this->section); } $query->filterIsParent(); return $query->find(); } }