<!--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分配變量header.blade.php並返回到content.blade.php
你的頭是全球性的嗎?我的意思是,你是否將它包含在所有.blade中? –