Dear All,
I'm a bit new to this so sorry if this is a poor or poorly worded question.
I'm hosting a very basic laravel installation using artisan serve. I've made a few changes including using a separate css file rather than the initial version which has the css on welcome.blade.php.
The css is unable to be shown in the browsers and throws up the following error in chrome - "net::ERR_INVALID_HTTP_RESPONSE". Notably it throws up the same error for the favicon which I haven't changed, so perhaps it's a larger issue.
The css file is public/css/style.css and in welcome.blade.php I have linked to it using the following
link href="{{URL::asset('css/style.css')}}" rel="stylesheet" type="text/css"
which does leave the browser looking in the right place - ":8000/css/style.css"
My PHP/server is stored in a MAMP (not MAMP pro) server. My computer is windows 10.
Thank you for any time and help you can give.