错误显示:语法错误,意外的标记"<" 在 laravel 中动态页面标题时



我要设置一个动态的页面标题如果在页面中设置了标题则显示它否则显示默认标题

下面是代码

<title>
@yield({{ 
@if(isset($title))
$title
@else 
"Islamabad's 1st Digital Real Estate Marketplace | Property051.com"
@endif
}})
</title>
@extends('front.layout.app', array('title'=> $get_society->society_name))

这里不需要yield,只需使用:

<title>
@if(isset($title))
{{ $title }}
@else 
Islamabad's 1st Digital Real Estate Marketplace | Property051.com
@endif
</title>

我不确定你甚至试图用产量做什么。只是在关键字前加一个@并不会自动使其成为php代码。你要做的应该是这样的。

<title>
<?php  
if(isset($title)){
echo $title;
}
else {
echo "Islamabad's 1st Digital Real Estate Marketplace | Property051.com";  
}


?>
</title>

相关内容

  • 没有找到相关文章

最新更新