getLabel(); } /** * The query used to refine the models for the tab. * * @param Builder $query * @return Builder */ public function modifyQuery(Builder $query): Builder { return $this->modifyQuery($query); } /** * Get the badge for the tab. * * @return int */ public function getBadge(): int { return $this->getBadge(); } /** * Determine if the tab should be hidden. * * @return bool */ public function shouldBeHidden(): bool { return $this->getBadge() === 0; } }