控制器的索引方法类似于
public function index()
{
$intro = Intro::all();
return view('welcome')->withIntro($intro);
}
如图像controller中所示。并且视图welcome.blade.php就像
@foreach($intro as $intro)
<h3>{{ $intro->title }}</h3>
<hr>
{{ $intro->detail }}
@endforeach
如图像welcome.blade.php中所示。 “未定义的变量介绍”是遇到的错误。我在任何地方都找不到解决方案。我做错了什么?
答案 0 :(得分:0)
您正在$intro
循环中用该数组的第一项值覆盖数组@foreach
。
尝试一下:
@foreach($intro as $introItem)
<h3>{{ $introItem->title }}</h3>
<hr>
{{ $introItem->detail }}
@endforeach