I get error 404 when trying to get the path of my css and js files. Any help will be appreciated, I'm using Laravel 5.8
<link href="{{asset('./public/css/bootstrap-datepicker.css')}}" rel="stylesheet">
<script src="{{asset('./public/js/jquery.js')}}"></script>
<script src="{{asset('./public/js/bootstrap-datepicker.js')}}"></script>
Here's my directory
Question 2: How can I access the files from node_modules? I also get error 404
This is my code for accessing node_modules files:
<link href="{{asset('dist/css/datepicker.min.css')}}" rel="stylesheet" type="text/css">
<script src="{{asset('dist/js/datepicker.min.js')}}"></script>
<!-- Include English language -->
<script src="{{asset('dist/js/i18n/datepicker.en.js')}}"></script>

