I am following an example of Laravel
exercise and I would like to know if I can transform this:
<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/css/override.css">
<link rel="stylesheet" type="text/css" href="/css/app.css">
In something similar to these that I have of another exercise:
<link rel="stylesheet" href="{{ asset('plugins/bootstrap/css/bootstrap.css') }}">
<link rel="stylesheet" href="{{ asset('plugins/bootstrap3/dist/css/bootstrap.css') }}">
Try this:
<link rel="stylesheet" href="{{ asset('public/css/bootstrap.min.css') }}">
I want to make a similar change since I get this error in the CSS debugger:
GET http://laravel/css/bootstrap.min.css