purcell/breeze-x

A helper command to scaffold multiple authentication guards on your Laravel project

1.0.5 2021-02-23 21:19 UTC

This package is auto-updated.

Last update: 2024-03-24 04:44:31 UTC


README

A simple version of Laravel Breeze.

Breeze offers a simple way to fully scaffold auth for the default guard and password broker. It does not offer any way to customise which guard/broker you want to scaffold. This package is aimed at the 1% of use cases where you want to quickly scaffold a "members", "admin" or any other area.

It also removes the front-end consideration of how you style the forms - you can control this yourself using whatever system is best for your project.

Usage:

php artisan breeze-x:install

This command will scaffold the controllers, request and routes for the default web guard and users password broker.

php artisan breeze-x:install admin admins

This command is an example of how you would scaffold your application assuming you've configured an admin guard and admins password broker in your config/auth.php file.