This commit is contained in:
merdan 2021-05-21 13:52:12 +05:00
parent 8bac9e2f90
commit 13af863fd3
2 changed files with 4 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class Post extends Model
'powerseo_title' => 'required',
'powerseo_description' => 'required',
'powerseo_keywords' => 'required',
'excerpt' => ''
'excerpt' => 'required'
];
/**

View File

@ -29,4 +29,7 @@
{{ ''|otherMetaTags|raw }}
{{ post|generateOgTags }}
{% if post.featured_image %}
<meta property="og:image" content="{{post.featured_image|media}}">
{% endif %}
{% endput %}