My laravel project does not find any of the css files of any of the pages. It shows up with the error,
GET http://localhost:8000/dashboard.css net::ERR_ABORTED
Did not find too many of the similar questions but tried the some solutions that I have found but obviously those did not help, otherwise I would not be asking again.
I`m using a Ubuntu PC.
Here are everything that I have tried.
- Checked file permissions, all the files have all
read, write and executionprivileges. - Tried restarting the localhost many times.
- Tried using the
asset()function,<link rel="stylesheet" type="text/css" href="{{asset('dashboard.css')}}"> - Tried using absolute path though I have the
cssfiles in the same directory as theblade.phpfiles.
None of the above mentioned ways fixed it. Some clue would help me a lot. Thank you.