Not Loading CSS File In Laravel From public folder
i have all the css file in public folder and i also link them to my index but the css not working.
Not Loading CSS File In Laravel From public folder
i have all the css file in public folder and i also link them to my index but the css not working.
Try using PHP built-in webserver instead of artisan server
php -S localhost:8000 -t public/ (run this command in the root of your Laravel project).
Also, you need to run npm install && npm run dev so that the default CSS and JS will be compiled. (Laravel documentation)