What is the bootstrap folder inside laravel for?

css, javascript, laravel-4, twitter-bootstrap

Solution

The bootstrap folder is for when Laravel starts up. Which is commonly called bootstrapping. It has nothing to do with the Bootstrap CSS library.

Problem

I recently learning laravel and as I go along I decided to include bootstrap for my styling and `js`. I found a bootstrap folder inside my laravel folder and I am confused if bootstrap is already included in laravel. If that is so, where are the bootstrap `css` and `js` files? What kind of call am I going place inside my html? Hope someone could clarify this to me. Thanks

Original source