install laravel with bootstrap 4 code example
Example 1: install bootstrap in laravel
composer require laravel/ui
php artisan ui bootstrap # to install the auth scaffoldings line 3 instead
php artisan ui bootstrap --auth
npm install
Example 2: install bootstrap vue laravel 7
import Vue from 'vue'
import BootstrapVue from "bootstrap-vue"
import App from './App.vue'
import "bootstrap/dist/css/bootstrap.min.css"
import "bootstrap-vue/dist/bootstrap-vue.css"
Vue.use(BootstrapVue)
new Vue({
el: '#app',
render: h => h(App)
})