Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel 10 install Breeze with Bootstrap 5?

I would like to ask for a little help. Is there a way to install Breeze in Laravel 10 with the Bootstrap 5 framework instead of Taiwind?

Can you describe the steps? Or do I just install and reformat the blades? THANKS.

like image 907
web216 Avatar asked Sep 06 '25 21:09

web216


1 Answers

yes, you can do that.

  • composer require laravel/breeze --dev
  • php artisan breeze:install
  • npm install bootstrap

and dont forget to add

  • @import 'bootstrap/dist/css/bootstrap.css'; in resources/sass/app.scss file
  • npm run dev
like image 178
samrat karki Avatar answered Sep 08 '25 10:09

samrat karki