We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34e6600 commit 6b82ad0Copy full SHA for 6b82ad0
src/SeoManager.php
@@ -170,6 +170,22 @@ public function setAlternates(?array $value): static
170
return $this;
171
}
172
173
+ /**
174
+ * @return $this
175
+ */
176
+ public function noIndexNoFollow(): static
177
+ {
178
+ return $this->setRobots('noindex, nofollow');
179
+ }
180
+
181
182
183
184
+ public function noIndex(): static
185
186
+ return $this->setRobots('noindex');
187
188
189
/**
190
* @param null|string|string[] $keywords
191
* @param null|Alternate[] $alternates
0 commit comments