-2
我有一個網站管理員,其中所有其他視圖將被設置在其中。注意到我使用Laravel框架。這裏是我的目錄:如何正確地將外部CSS文件附加到母版頁上?
/myweb
/resources
/views
/master
/app.blade.php -- this is web master
/home.blade.php
/show.blade.php
/public
/css
/app.css
現在我在app.blade.php
文件附加app.css
這樣的:
<link rel="stylesheet" href="css/font-awesome.css">
嘛,一個奇怪的現象發生在這裏^ ..當我打開home.blade.php
app.css
會被發現,但當我打開show.blade.php
時,它不會被發現。
注:如果我附上app.css
這樣的:
<link rel="stylesheet" href="../css/font-awesome.css">
然後它會爲show.blade.php
工作,但它並不適用於home.blade.php
工作。
爲什麼?我該如何解決它?我的意思是我怎麼能寫一個適用於這兩個頁面的路徑?
嘗試使用這樣'<鏈路HREF =「{{URL ::到( 'CSS/style.css文件')} }「rel =」stylesheet「>' –
@ManishPatel非常感謝你 – stack
我已發佈爲答案!很高興幫助你! :) –