Unable to access Bower in Laravel app directory

Viewed 3730

I have recently started using Bower (or trying to!) to manage the packages within my Laravel 4 application. The two main ones being Bootstrap and jQuery.

My footer, using Blade is:

{{HTML::script('bower_components/jquery/jquery.min.js')}}
{{HTML::script('packages/bootstrap/css/js/bootstrap.min.js')}}

The link it displays is http://localhost:8888/bower_components/jquery/jquery.min.js, which is correct.

The 'packages' folder is accessible, but it can't find a thing inside the bower_components directory. I have set the permissions to -R 755 on the bower_components directory but it still isn't accessible.

Any help would be hugely appreciated.

2 Answers
Related