将变量赋值给header.blade.php并返回到content.blade.php

时间:2017-06-03 06:27:33

标签: php laravel

<!--in header.balde.php -->
$data = 'Hellow World'; // assigned a variable
{{ $data }} // echo hellow world // its working

//in content.blade.php
{{ $data }} // undefined variable it not comes on content // I have to must 
get variable data from header.blade.php

//Main Template.blade.php
@include('header')
@include('content')
@include('footer')
?>

我想将变量分配给header.blade.php并返回到content.blade.php

2 个答案:

答案 0 :(得分:0)

您可以使用会话将数据存储在此中,并在项目的任何位置使用它

Session::put('data', $data);

并在刀片中使用

Session::get('data');

答案 1 :(得分:0)

你可以像这样在刀片中传递数据

public function example(){
    $data = 'hello world';
    return view('blade_template' compact('data'));
}

然后在视图中使用{{ $data }}来打印值