I installed bootstrap-select package using npm. I can see that in node-modules dir of my Laravel project.
I have added following entry to master.blade.php:
<link rel="stylesheet" href="{{ asset('css/bootstrap-select.css') }}">
However when I run php artisan serve on my local machine, and go to browser I can see following error in the console:
[Error] Failed to load resource: the server responded with a status of 404 (Not Found) (bootstrap-select.css, line 0) http://127.0.0.1:8000/css/bootstrap-select.css
I am using Laravel Framework 5.7.28
Any clues much appreciated!