错误显示:语法错误,意外标记“<”当动态 laravel 中的页面标题时
Error Display: Syntax error, unexpected token "<" When dynamic the page title in 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>
我不确定你想用 yield 做什么。只是在关键字前加上 @ 不会自动将其变成 php 代码。您尝试执行的操作应如下所示。
<title>
<?php
if(isset($title)){
echo $title;
}
else {
echo "Islamabad's 1st Digital Real Estate Marketplace | Property051.com";
}
?>
</title>
如果在页面中设置了标题,我会将页面标题动态化,然后显示它,否则显示默认标题
下面是代码
<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>
我不确定你想用 yield 做什么。只是在关键字前加上 @ 不会自动将其变成 php 代码。您尝试执行的操作应如下所示。
<title>
<?php
if(isset($title)){
echo $title;
}
else {
echo "Islamabad's 1st Digital Real Estate Marketplace | Property051.com";
}
?>
</title>