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