Your Guide to Laravel Excellence

Get Started with Bootstrap 5 in Laravel 11: A Step-by-Step Guide

Get Started with Bootstrap 5 in Laravel 11: A Step-by-Step Guide

How to Install Bootstrap in a Laravel Project

In this tutorial, we will learn how to install Bootstrap in a Laravel project. You can follow this guide to install it in multiple Laravel versions like Laravel 8, Laravel 9, Laravel 10, and Laravel 11. We will install it using npm and integrate it into the application using Vite for asset bundling.

Install Bootstrap and SASS

Run the following commands in your terminal to install Bootstrap and SASS:

npm install -D bootstrap@5.3.3

npm install -D sass

Import Bootstrap SCSS:

Create an SCSS file (e.g., resources/scss/app.scss ) if you haven't already, and import Bootstrap's SCSS file into it:

@import "../../node_modules/bootstrap/scss/bootstrap.scss";

Import Bootstrap SCSS:

Import Bootstrap's JavaScript functionality into your JavaScript file (e.g., resources/js/app.js ):

import './bootstrap';


import '../sass/app.scss';
import * as bootstrap from 'bootstrap';

Include Bundled Assets in Your Laravel Blade File

In your Laravel Blade file (e.g., resources/views/layouts/app.blade.php ), include the bundled CSS and JavaScript files:

@vite(['resources/scss/app.scss', 'resources/js/app.js'])

Output

Bootstrap installed in laravel 11

Recommeded Posts

How to Use Laravel Service Container and Dependency Injection Easily

How to Use Laravel Service Container and Dependency Injection Easily

Learn what Laravel's Service Container and Dependency Injection are, and how they help you build better and faster PHP apps in 2025.

2 months ago Read article →
Laravel 11: How to Download Files from External URLs and Servers

Laravel 11: How to Download Files from External URLs and Servers

Learn how to download files from external URLs and servers in Laravel 11. This easy guide walks you through the steps to set up file downloads in your Laravel application, making it simple to fetch files from anywhere.

2 months ago Read article →
Differences Between Cron Jobs and Laravel Scheduler

Differences Between Cron Jobs and Laravel Scheduler

Differences Between Cron Jobs and Laravel Scheduler

2 months ago Read article →
Learn about the toBase() method in Laravel - Full Guide & Examples

Learn about the toBase() method in Laravel - Full Guide & Examples

Learn about the toBase() method in Laravel - Full Guide & Examples

2 months ago Read article →