2016-11-19 59 views
-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.phpapp.css會被發現,但當我打開show.blade.php時,它不會被發現。

注:如果我附上app.css這樣的:

<link rel="stylesheet" href="../css/font-awesome.css"> 

然後它會爲show.blade.php工作,但它並不適用於home.blade.php工作。

爲什麼?我該如何解決它?我的意思是我怎麼能寫一個適用於這兩個頁面的路徑?

+0

嘗試使用這樣'<鏈路HREF =「{{URL ::到( 'CSS/style.css文件')} }「rel =」stylesheet「>' –

+0

@ManishPatel非常感謝你 – stack

+0

我已發佈爲答案!很高興幫助你! :) –

回答

相關問題