php - Dynamic page title for laravel -
how can post title's page title?
@section('title', '| {{ $post->title }}')
this return php code in page title!
thanks.
remove single quotes value rendering outputting string:
@section('title', $post->title)
Comments
Post a Comment