mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-18 13:04:24 +00:00
✨ Add SEO support with configuration and traits
- Introduced `config/seo.php` to centralize SEO settings. - Implemented `SeoTrait` for dynamic SEO management. - Added `SeoDataAttribute` to set SEO metadata at the class level. - Updated various views to integrate dynamic SEO handling. - Included fallback settings for titles, descriptions, images, and more.
This commit is contained in:
31
app/Traits/SeoTrait.php
Normal file
31
app/Traits/SeoTrait.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
namespace App\Traits;
|
||||
|
||||
use App\Attributes\SeoDataAttribute;
|
||||
use Illuminate\Support\Facades\View;
|
||||
|
||||
trait SeoTrait
|
||||
{
|
||||
public function mountSeoTrait(): void
|
||||
{
|
||||
$this->setupSeo();
|
||||
}
|
||||
|
||||
/**
|
||||
* Setup SEO data from attributes and share it globally.
|
||||
*/
|
||||
protected function setupSeo(): void
|
||||
{
|
||||
$reflection = new \ReflectionClass($this);
|
||||
$attributes = $reflection->getAttributes(SeoDataAttribute::class);
|
||||
|
||||
if (!empty($attributes)) {
|
||||
$seoDataAttribute = $attributes[0]->newInstance();
|
||||
$seoData = $seoDataAttribute->resolve();
|
||||
} else {
|
||||
$seoData = SeoDataAttribute::getData('default');
|
||||
}
|
||||
|
||||
View::share('SEOData', $seoData);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user