在laravel中你可以这样做:
@section('metadescription')
description goes here...
@stop
但结果是:
<meta name="description" content=" XXXXXXXXX ">
我不想要那些空间。有没有办法只指定一组参数,这些参数在被屈服时也会被修剪?
答案 0 :(得分:12)
如果您只是将简单字符串传递给该部分,则可以将该字符串作为第二个参数传递给section
。例如:
@section('metadescription', 'Meta Description goes here')
答案 1 :(得分:6)
这解决了我的问题:
@section('metadescription'){{ "Description goes here" }}@stop