laravel 4.2中的路由加载页面但不加载样式

时间:2016-05-18 08:06:03

标签: php laravel

当我使用laravel 4路由时

Route::get("/home", "HomeController@showHome"); 

它工作正常,但当我使用路由

Route::get("/home/about", "HomeController@showHome"); 

它加载页面,但没有采用css和javascript.i尝试使用命名路由

Route::get("/home/about" array(
'as'=>'home', 
'uses'=>'HomeController@showHome'));

这也不起作用,它也会加载没有样式的页面。

1 个答案:

答案 0 :(得分:0)

使用css代码如下:

{{ HTML::style('css/css.css'); }}