laravel-blog-tutorial
laravel-blog-tutorial copied to clipboard
Change name of variable
in the views.blog.single.blade.php this
<?php $titleTag = htmlspecialchars($post->title); ?>
@section('title', $titleTag)
should be replaced by something like:
<?php $postTitle = htmlspecialchars($post->title); ?>
@section('title', $postTitle)
As the blog uses tags, the tag can be confused with the title of a tag. I didn't make the association with the HTML title tag.