Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
guizoxxv committed Jul 14, 2024
1 parent b06c93a commit ad40be1
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,38 @@
# laravel-breeze-bootstrap
# Laravel Breeze Bootstrap

A Laravel package to use Bootstrap scaffolding with Breeze.

## Introduction

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).

## Supported versions

* Laravel 11

## Instalation

1. Require the package via Composer:

```
composer require guizoxxv/laravel-breeze-bootstrap
```

2. Install Breeze Bootstrap stack

```
php artisan breeze-bootstrap-install
```

3. Migrate your database:

```
php artisan migrate
```

4. Compile your application's frontend assets

```
npm install
npm run dev
```

0 comments on commit ad40be1

Please sign in to comment.