我将CSS文件放在public/CSS文件夹中。我添加了CSS文件在头部部分如下。
public/CSS
<link href="{{ url('/css/app.css') }}" rel="stylesheet">
但CSS不工作。
我不明白为什么你不能使用一个相对的URL,比如:
<link href="./css/app.css" rel="stylesheet">