ErrorException未定义变量:test (View: F:mcaSEM2laravelExample-


public function show(){
$test = "Test Views";
return view('home',$test);
}

在home.blade.php:

<h1>{{$test}}</h1>

Error Exception:

$test is undefined

如何解决这个问题?

您的公共函数被声明在类之外。

下面的代码似乎可以工作:

function show(){
$test = "Test Views";
return view('home',$test);
}

相关内容

  • 没有找到相关文章