diff --git a/app/Http/Livewire/News/AuthorsOverview.php b/app/Http/Livewire/News/AuthorsOverview.php index d28d6ace..beb74553 100644 --- a/app/Http/Livewire/News/AuthorsOverview.php +++ b/app/Http/Livewire/News/AuthorsOverview.php @@ -4,6 +4,7 @@ namespace App\Http\Livewire\News; use App\Models\Lecturer; use Livewire\Component; +use RalphJSmit\Laravel\SEO\Support\SEOData; class AuthorsOverview extends Component { @@ -19,6 +20,12 @@ class AuthorsOverview extends Component ]) ->orderByDesc('library_items_count') ->get(), + ])->layout('layouts.app', [ + 'SEOData' => new SEOData( + title: __('News articles writer'), + description: __('Click on any of the authors to see their articles.'), + image: asset('img/einundzwanzig-news-colored.png'), + ), ]); } }