First of all make sure you have node.js installed. If you haven’t so, install it:
Change directory to your laravel project and use npm to install sb-admin-2 like this:
npm install --global startbootstrap-sb-admin-2
If it compains for popper or other packages, use npm again to install them, like this:
npm install --global popper
Now, the tricky part for most people new to this:
Go to laravel path
resources/sass/app.scss
Add this import:
@import "~startbootstrap-sb-admin-2/scss/sb-admin-2.scss";
Don’t forget to:
npm install npm run dev
Now change your app.blade.php with html markup from sb-admin-2, save and refresh your browser: you will end up with sb-admin-2 powerful laravel installation.
Leave a Reply