Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Swap Laravel Jetstream's Tailwind CSS Livewire scaffolding for Bootstrap views, customized for the Master admin template.

A full-stack Next.js TypeScript template focused on functionality over UI, featuring Zustand, TanStack Query, and ESLint 9 support.
master-laravel-bootstrap-jetstream is a Composer package from ThemeSelection that swaps Laravel Jetstream's default Tailwind CSS Livewire scaffolding for Bootstrap-based views, customized for the Master HTML + Laravel admin template.
master-laravel-bootstrap-jetstream is a Laravel package that replaces only the view layer of Jetstream's Livewire scaffolding with Bootstrap markup, while leaving Jetstream's Action, Model, Controller, and Component classes untouched. It runs on Laravel applications that already have Jetstream installed, and it is built on top of Laravel Jetstream and Jetstrap. The package focuses on the VIEW side of Jetstream, so the swap introduces no added layer of complexity to your project's backend logic.
php artisan jetstream_master:swap livewire with the optional --teams switch to swap team assets, mirroring Jetstream's own install command.Paginator::useBootstrap() in your AppServiceProvider.composer require themeselection/master-laravel-bootstrap-jetstream --dev.--teams flag with the swap command to replace team-related assets just like Jetstream's own installer.npm install && npm run build.First install Laravel Jetstream via Composer and run php artisan jetstream:install livewire. Then install this package as a dev dependency and run php artisan jetstream_master:swap livewire (optionally with --teams). The swap command publishes Bootstrap-based view overrides over Jetstream's existing scaffolding.
Jetstrap is the general-purpose package that this project is built on; it provides a Bootstrap swap for Jetstream without the Master template requirement. Laravel Jetstream itself is the underlying framework that provides the authentication scaffolding being restyled.
No. The package only provides a swap for Livewire scaffolding. The readme explicitly notes that Inertia scaffolding has not been provided yet, so attempting to use it with an Inertia Jetstream install will not work.
No. It is specially customized for the Master HTML + Laravel admin template and the readme states that it will not work with any other project. It is not a general-purpose Bootstrap theme for Jetstream.
Install Laravel Jetstream first with composer require laravel/jetstream and php artisan jetstream:install livewire. Then require this package as a dev dependency with composer require themeselection/master-laravel-bootstrap-jetstream --dev and run php artisan jetstream_master:swap livewire.
No. The package focuses only on the VIEW side of Jetstream. The Action, Model, Controller, and Component classes of your project remain 100% handled by the Laravel development team without added complexity.
Yes, it is open-sourced software licensed under the MIT license, and the license file is available in the GitHub repository.