我想要一个更简单的解决方案,而不是不断地创建一个if语句来查看变量是否在数组中。有人知道吗?
@if(isset($content->title))
<h2>{{ $content->title }}</h2>
@endif
或者
{{ (isset($content-title)) ? "<h2>$content->title</h2>" : "" }}
在我看来,编码太多了。所以我希望有人知道插件可以做类似的事情:
{{ @$content->title }}
提前完成
答案 0 :(得分:7)