I am currently facing an issue where the CSS file path in my code is incorrect. The code I have is:
{{HTML::style('css/bootstrap/bootstrap.min.css')}}
When rendered in the source code, it displays as:
http://www.view.local/laravel/css/bootstrap/bootstrap.min.css
This path is incorrect and should actually be:
http://www.view.local/laravel/public/css/bootstrap/bootstrap.min.css
However, I do not want the 'laravel' part of the URL to be visible in the source.
The current project directory is:
http://www.view.local/laravel
Everything else seems to be working fine with this setup. How can I fix this issue and get the CSS file path to display correctly?