In the Blade file source code, the CSS include URL is structured like this:
<link rel="stylesheet" href="{{ asset('frontend/css/bootstrap.min.css') }}" type="text/css">
However, when I check the page source in the browser, I see the following URL:
<link rel="stylesheet" href="http://127.0.0.1:8000/public/frontend/css/bootstrap.min.css" type="text/css">
What could be causing this discrepancy? And how can I eliminate the public
segment from the URL?