-
Install Laravel
composer create-project laravel/laravel example-app
-
Use in project folder
npm i bootstrap
-
Copy the css and js folders from the following locations
- node_modules/bootstrap/dist/css
- node_modules/bootstrap/dist/js
-
Copy and Paste the css and js files into
public/
-
Insert the links into the layout file
<link rel="stylesheet" href="{{ asset( 'css/bootstrap.min.css' ) }}">
<script src="{{ asset( 'js/bootstrap.min.js' ) }}"></script>