我需要将变量传递给包含的Blade文件.我试过这两种方式;然而,两者都没有成功.
>将变量title传递给包含的文件:
@section('left') @include('modal',['title' => 'Hello']) @stop
>使用@yield并设置部分:
@section('left') @include('modal') @section('title') Hello @stop @stop
我正在使用Laravel 4.2.我不知道我想做什么是可能的,但我想是的.
根据
documentation,包含方式应该是这样做的方式:
Including Sub-Views
@include('view.name')
You may also pass an array of data to the included view:
@include('view.name',array('some'=>'data'))
我的预感是$title与嵌套模板中的另一个变量冲突.只是为了排除故障,尝试暂时将其称为其他内容.