seo image added

This commit is contained in:
HolgerHatGarKeineNode
2023-03-16 18:45:32 +01:00
parent 54d4069658
commit 400c2db26e
8 changed files with 35 additions and 10 deletions

View File

@@ -115,7 +115,11 @@ class InternArticleView extends Component
title: $this->libraryItem->name,
description: strip_tags($this->libraryItem->excerpt) ?? __('Here we post important news that is relevant for everyone.'),
author: $this->libraryItem->lecturer->name,
image: $this->libraryItem->getFirstMedia('main') ? $this->libraryItem->getFirstMediaUrl('main') : asset('img/einundzwanzig-wallpaper-benrath.png'),
image: $this->libraryItem->getFirstMedia('main')
? $this->libraryItem->getFirstMediaUrl('main', 'seo')
: url()->route('imgPublic', [
'path' => 'img/einundzwanzig-wallpaper-benrath.png', 'h' => 630, 'w' => 1200, 'fit' => 'crop'
]),
published_time: Carbon::parse($this->libraryItem->created_at),
type: 'article',
),