We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d473719 commit 081cf8eCopy full SHA for 081cf8e
stubs/modules/Blog/views/post-index.blade.php
@@ -1,12 +1,8 @@
1
@extends('site-layout')
2
3
-@section('meta-title')
4
- Blog
5
-@stop
+@section('meta-title', 'Blog')
6
7
-@section('meta-description')
8
- Here you will find the latest news and updates about us.
9
+@section('meta-description', 'Here you will find the latest news and updates about us.')
10
11
@section('bodyEndScripts')
12
@vite('resources-site/js/blog-app.js')
stubs/modules/Blog/views/post-show.blade.php
- {{ $post->meta_tag_title }}
+@section('meta-title', $post->meta_tag_title)
- {{ $post->meta_tag_description }}
+@section('meta-description', $post->meta_tag_description)
0 commit comments