childRoutes = $routes; return $this; } public function addChildRoute(string $route): MenuItemModel { $this->childRoutes[] = $route; return $this; } public function isChildRoute(string $route): bool { return \in_array($route, $this->childRoutes); } }