在子视图中,您可以执行以下操作:
@section('title', 'Page Title')
这将设置在父视图中“屈服”的标题,例如:
<title>App Name - @yield('title')</title>
我正在尝试使用变量,但失败:
@section('title', 'New message from {{$fromUser['first_name']}}')
结果为:
syntax error, unexpected 'first_name' (T_STRING), expecting ',' or ')'
我不确定语法,如何使用@section
设置变量,并且在我的情况下,我使用数组($fromUser['first_name']
)中的数组元素?