Added SEO attributes and extended localization

- Added `#[SeoDataAttribute]` annotations to Livewire components for SEO management.
- Extended translations in English, Spanish, and German for better localization support.
This commit is contained in:
HolgerHatGarKeineNode
2025-11-22 22:36:46 +01:00
parent d359dd56b0
commit a5dafc67df
32 changed files with 405 additions and 37 deletions

View File

@@ -1,5 +1,6 @@
<?php
use App\Attributes\SeoDataAttribute;
use App\Models\City;
use App\Models\Country;
use App\Models\Meetup;
@@ -8,7 +9,9 @@ use Livewire\Attributes\Validate;
use Livewire\Volt\Component;
use Livewire\WithFileUploads;
new class extends Component {
new
#[SeoDataAttribute(key: 'meetups_create')]
class extends Component {
use WithFileUploads;
use SeoTrait;