parse error: syntax error, unexpected '<', expecting ')'

parse error: syntax error, unexpected '<', expecting ')'

我尝试更改标题页使用

@section('page_title', {{  $mapel->subjects_name  }} )

但是查看错误信息

syntax error, unexpected '<', expecting ')' (View: /mnt/187621C87621A788/ProjekWeb/eLearning/resources/views/lesson/index.blade.php)

在我的控制器中

public function show($id)
{
    $mapel = Subjects::findOrFail($id);
    return view('lesson.index', compact('mapel'));
}

我试着用 dd($mapel->subjects_name) 查了一下,数据出来了,谢谢你

为什么要压缩,我觉得你可以直接发$mapel like

return view('lesson.index', $mapel);

然后在视图中

@section('page_title', $mapel->subjects_name );

@section('page_title', ['mapel_subject_name' => $mapel->subjects_name] )

随心所欲。