Skip to content

Commit ad40be1

Browse files
committed
Update readme
1 parent b06c93a commit ad40be1

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

README.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,38 @@
1-
# laravel-breeze-bootstrap
1+
# Laravel Breeze Bootstrap
2+
23
A Laravel package to use Bootstrap scaffolding with Breeze.
4+
5+
## Introduction
6+
7+
Bootstrap is not supported by default in authentication starter kits since Laravel version 8. This package combines the UI pattern on the legacy package [laravel/ui](https://github.com/laravel/ui) that uses Bootstrap, with the newer authentication starter kit [laravel/breeze](https://github.com/laravel/breeze).
8+
9+
## Supported versions
10+
11+
* Laravel 11
12+
13+
## Instalation
14+
15+
1. Require the package via Composer:
16+
17+
```
18+
composer require guizoxxv/laravel-breeze-bootstrap
19+
```
20+
21+
2. Install Breeze Bootstrap stack
22+
23+
```
24+
php artisan breeze-bootstrap-install
25+
```
26+
27+
3. Migrate your database:
28+
29+
```
30+
php artisan migrate
31+
```
32+
33+
4. Compile your application's frontend assets
34+
35+
```
36+
npm install
37+
npm run dev
38+
```

0 commit comments

Comments
 (0)