【发布时间】:2014-07-17 04:37:20
【问题描述】:
我正在尝试将一组值从 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 - 未定义。我做错了什么?
【问题讨论】: