I'm doing a little website for me with Laravel 8.0.
Inside home.blade.php
, I have this : <link rel="stylesheet" href="{{ asset('css/header.css') }}">
But when I go to my browser, no css in my page. Inside the developper tools, it says <link rel="stylesheet" href="http://localhost/css/header_site.css">
.
I have all my css inside the public/assets/css
folder.
I also used the VirtualHost inside httpd-vhosts.conf
where I do DocumentRoot "C:/xampp/htdocs/my-project/public"
.
Cordially
Try configuring the assets url in the .env
file. ASSET_URL=http://localhost/assets/
. Then do {{asset('css/header.css')}}