I'm starting out with Laravel which as at the time of this writing is 6.0. I need to import custom JS and CSS files in my project.
Form the file structure in Laravel 6, there is a js/ and /sass file in the resources folder. I have created a script.js and a style.css file right there. I tried to call them using the code
<script src="{{ asset('js/app.js')}}"></script>
and
<link href='{{ asset('sass/style.css')}}'>
but my console log shows
GET http://127.0.0.1:8000/js/app.js net::ERR_ABORTED 404
Is there a new way of calling these files in Laravel 6.