laravel-blog-tutorial icon indicating copy to clipboard operation
laravel-blog-tutorial copied to clipboard

Change name of variable

Open viery365 opened this issue 7 years ago • 0 comments

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.

viery365 avatar Apr 27 '18 15:04 viery365