I want to use Bootstrap 3 Sass with Laravel 5.1, but I had some questions:
- In 5.1, in the package.json file for Laravel, out-of-the-box there is a dependency for "bootstrap-sass": "^3.0.0". Is there an easy way then to set up bootstrap sass with Laravel 5.1?
- Do I need to pull in the bootstrap source or should I just link to the CDN or put the files in my public folder?
- Is there any reason to use the source code of Bootstrap, instead of putting it in the public folder?
- Am I correct in assuming that I would need to install bootstrap through Bower, move the fonts folder contents to the public folder, then set up Elixir to mix all the Sass files together?
I'm just a bit confused about integrating a third party front end service like Bootstrap into Laravel. I'm new to both Laravel and Bootstrap, so any information or advice would be appreciated.
Note: I've done a lot of research online, but the tutorials for Laravel and Bootstrap are dated and the comments reveal that they don't work right.
Thank you for your time.