mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
✨ 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:
@@ -1,12 +1,15 @@
|
||||
<?php
|
||||
|
||||
use App\Attributes\SeoDataAttribute;
|
||||
use App\Models\Meetup;
|
||||
use App\Models\MeetupEvent;
|
||||
use App\Traits\SeoTrait;
|
||||
use Livewire\Attributes\Validate;
|
||||
use Livewire\Volt\Component;
|
||||
|
||||
new class extends Component {
|
||||
new
|
||||
#[SeoDataAttribute(key: 'meetups_create_edit_events')]
|
||||
class extends Component {
|
||||
use SeoTrait;
|
||||
|
||||
public Meetup $meetup;
|
||||
|
||||
Reference in New Issue
Block a user