laravel 4.2: my demo project in ytform when i try to add css file (style.css) from public folder having another folder, css folder. try to get any class its not working .
in View: i have an other folder, name layouts and i am accessing here css file but not working?
其中master.blade.php添加CSS文件
<head>
@section('head')
<meta charset="UTF-8">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/css/style.css">
@show
</head>
我嘗試用給定的兩種方式卻徒勞無功,css文件中沒有任何視圖文件夾的文件支持如何添加CSS文件
<link rel="stylesheet" type="text/css" href="/css/style.css">
{{HTML::style('css/style.css')}}
any solution or mistake ?
發表您的文件結構這裏 – Deryck 2014-09-20 09:50:21
---> public-folder ---> css-folder = style.css – 2014-09-22 04:45:21
---> publicfolder ---> jsfolder = app.js文件 – 2014-09-22 04:46:28