我正在尝试将一系列值从Laravel中的routes.php
传递到Blade模板中的@foreach
循环。这是我的路线例程:
Route::get('/', function()
{
$theColors = array("red","green","blue","yellow");
return View::make('hello', array('theLocation' => 'NYC', 'theWeather'=> 'stormy', 'theColors'));
});
我的Blade模板代码:
@foreach ($theColors as $color)
<p>The color is {{$color}}.</p>
@endforeach
我的日志显示模板中的变量 - $theColors
- 未定义。我做错了什么?
答案 0 :(得分:1)
您尚未正确地将$theColors
传递给视图
更改
return View::make('hello', array('theLocation' => 'NYC', 'theWeather'=> 'stormy', 'theColors'));
到
return View::make('hello', array('theLocation' => 'NYC', 'theWeather'=> 'stormy', 'theColors' => $theColors));