你好,人们不确定是什么问题.. ....
这是我的routes.php
Route::get('logout', function()
{
return View::make('logout');
});
如果我使用这样的链接<a href="{{ URL::to('logout') }}">Log out</a>
它不起作用..但是如果我像css文件这样<a href="logout">Log out</a>
同样的问题写它... {{ HTML::style('/css/style.css') }}
不工作,但......但这项工作<link href="css/style.css" rel="stylesheet" type="text/css" />
我认为它没有正确加载laravel模板系统........任何解决这个问题的方法??
答案 0 :(得分:1)
要使刀片模板生效,您的文件需要以.blade.php
结尾,而不仅仅是.php
。