mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-13 06:56:48 +00:00
seo updated
This commit is contained in:
@@ -4,6 +4,7 @@ namespace App\Http\Livewire\School;
|
||||
|
||||
use App\Models\Country;
|
||||
use Livewire\Component;
|
||||
use RalphJSmit\Laravel\SEO\Support\SEOData;
|
||||
|
||||
class CityTable extends Component
|
||||
{
|
||||
@@ -11,6 +12,12 @@ class CityTable extends Component
|
||||
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.school.city-table');
|
||||
return view('livewire.school.city-table')->layout('layouts.app', [
|
||||
'SEOData' => new SEOData(
|
||||
title: __('Courses'),
|
||||
description: __('Choose your city, search for courses in the surrounding area and select a topic that suits you.'),
|
||||
image: asset('img/screenshot.png')
|
||||
)
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace App\Http\Livewire\School;
|
||||
|
||||
use App\Models\Country;
|
||||
use Livewire\Component;
|
||||
use RalphJSmit\Laravel\SEO\Support\SEOData;
|
||||
|
||||
class CouseTable extends Component
|
||||
{
|
||||
@@ -11,6 +12,12 @@ class CouseTable extends Component
|
||||
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.school.couse-table');
|
||||
return view('livewire.school.couse-table')->layout('layouts.app', [
|
||||
'SEOData' => new SEOData(
|
||||
title: __('Courses'),
|
||||
description: __('Choose your city, search for courses in the surrounding area and select a topic that suits you.'),
|
||||
image: asset('img/screenshot.png')
|
||||
)
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,6 +5,7 @@ namespace App\Http\Livewire\School;
|
||||
use App\Models\Country;
|
||||
use App\Models\CourseEvent;
|
||||
use Livewire\Component;
|
||||
use RalphJSmit\Laravel\SEO\Support\SEOData;
|
||||
|
||||
class EventTable extends Component
|
||||
{
|
||||
@@ -48,6 +49,12 @@ class EventTable extends Component
|
||||
'location' => $event->course->name,
|
||||
'description' => $event->venue->name,
|
||||
]),
|
||||
])->layout('layouts.app', [
|
||||
'SEOData' => new SEOData(
|
||||
title: __('Dates'),
|
||||
description: __('Dates for courses about Bitcoin.'),
|
||||
image: asset('img/screenshot.png')
|
||||
)
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace App\Http\Livewire\School;
|
||||
|
||||
use App\Models\Country;
|
||||
use Livewire\Component;
|
||||
use RalphJSmit\Laravel\SEO\Support\SEOData;
|
||||
|
||||
class LecturerTable extends Component
|
||||
{
|
||||
@@ -11,6 +12,12 @@ class LecturerTable extends Component
|
||||
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.school.lecturer-table');
|
||||
return view('livewire.school.lecturer-table')->layout('layouts.app', [
|
||||
'SEOData' => new SEOData(
|
||||
title: __('Lecturers'),
|
||||
description: __('Lecturers in the surrounding area.'),
|
||||
image: asset('img/screenshot.png')
|
||||
)
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace App\Http\Livewire\School;
|
||||
|
||||
use App\Models\Country;
|
||||
use Livewire\Component;
|
||||
use RalphJSmit\Laravel\SEO\Support\SEOData;
|
||||
|
||||
class VenueTable extends Component
|
||||
{
|
||||
@@ -11,6 +12,12 @@ class VenueTable extends Component
|
||||
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.school.venue-table');
|
||||
return view('livewire.school.venue-table')->layout('layouts.app', [
|
||||
'SEOData' => new SEOData(
|
||||
title: __('Venues'),
|
||||
description: __('Venues in the surrounding area.'),
|
||||
image: asset('img/screenshot.png')
|
||||
)
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user