我有一个关于简单的laravel代码的问题,但是无效。
这是路线的样子:
Route::get('/', function()
{
$chill = array(
'heading' => 'Hello Laravel',
'body' => 'This is totally awesome'
);
return View::make('test', $chill);
});
这是视图在test.php
中的显示方式:
{{ $heading }}
{{ $body }}
我不明白为什么这不起作用。
答案 0 :(得分:1)
首先,你必须命名你的观点
test.blade.php
如果您想在视图中使用刀片。
然后在这里试试这段代码:
Route::get('/', function()
{
$chill = array(
'heading' => 'Hello Laravel',
'body' => 'This is totally awesome'
);
return View::make('test')->with('chill', $chill);
});
然后在你的视图中使用它:
{{ $chill['heading'] }}
{{ $chill['body'] }}
我希望我没有任何小错误,但现在应该可以使用了。)