*/ trait Section { protected $groupFieldsBySectionName = false; public function enableGroupBySectionName() { $this->groupFieldsBySectionName = true; return $this; } public function disableGroupBySectionName() { $this->groupFieldsBySectionName = false; return $this; } }