This commit is contained in:
2026-06-24 19:20:33 +02:00
parent 2f8cc01e0a
commit 712d2b2161
14 changed files with 553 additions and 5 deletions

View File

@@ -2,7 +2,13 @@
namespace App\Http\Controllers;
use Artesaos\SEOTools\Facades\SEOTools;
abstract class Controller
{
//
protected function seoNoIndex(): void
{
SEOTools::metatags()->setRobots('noindex, nofollow');
}
}