我要设置一个动态的页面标题如果在页面中设置了标题则显示它否则显示默认标题
下面是代码
<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>