seo updated

This commit is contained in:
Benjamin Takats
2022-12-21 19:17:39 +01:00
parent 7d90c7317d
commit 613ac30692
26 changed files with 194 additions and 20 deletions

View File

@@ -3,8 +3,8 @@
namespace App\Http\Livewire\Library;
use App\Models\Country;
use App\Models\Podcast;
use Livewire\Component;
use RalphJSmit\Laravel\SEO\Support\SEOData;
class LibraryTable extends Component
{
@@ -41,6 +41,12 @@ class LibraryTable extends Component
return view('livewire.library.library-table', [
'libraries' => $tabs,
])->layout('layouts.app', [
'SEOData' => new SEOData(
title: __('Library'),
description: __('Here you can find all content that are available in the library.'),
image: asset('img/screenshot.png')
)
]);
}
}