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 5f2a6d6 commit f781ff9Copy full SHA for f781ff9
composer.json
@@ -24,8 +24,8 @@
24
},
25
"require": {
26
"php": "^8.2",
27
- "illuminate/support": ">=10.0",
28
- "illuminate/view": ">=10.0"
+ "illuminate/support": "^10.0|^11.0|^12.0",
+ "illuminate/view": "^10.0|^11.0|^12.0"
29
30
"require-dev": {
31
"orchestra/testbench": ">=8.0",
src/SEOManager.php
@@ -240,7 +240,7 @@ public function tags(): array
240
/** Has a specific tag been set? */
241
public function hasRawTag(string $key): bool
242
{
243
- return isset($this->tags[$key]) && ($this->tags[$key] !== null);
+ return isset($this->tags[$key]);
244
}
245
246
/** Has a specific meta tag been set? */
0 commit comments