rubensrocha / laravel-breeze-multi-auth-admin
Multi auth admin with Laravel Breeze
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 39
Watchers: 2
Forks: 11
Open Issues: 0
Language:JavaScript
Type:project
Requires
- php: ^8.0.2
- guzzlehttp/guzzle: ^7.2
- laravel/framework: ^9.11
- laravel/sanctum: ^2.14.1
- laravel/tinker: ^2.7
Requires (Dev)
- barryvdh/laravel-debugbar: ^3.6
- barryvdh/laravel-ide-helper: ^2.12
- beyondcode/laravel-query-detector: ^1.6
- fakerphp/faker: ^1.9.1
- laravel/breeze: ^1.9
- laravel/sail: ^1.0.1
- mockery/mockery: ^1.4.4
- nunomaduro/collision: ^6.1
- phpunit/phpunit: ^9.5.10
- spatie/laravel-ignition: ^1.0
This package is auto-updated.
Last update: 2024-10-21 00:47:08 UTC
README
About This Repository
This is a repository created to serve as a basis for those who intend to create a Laravel project using Breeze with multiple guards/auth, where it is possible to create a website and an admin panel with separate authentication for each one.
Unlike many tutorials that teach you how to achieve this goal, this repository is in fact complete and has all the basic functional functions in the admin panel.
Site(User)
- Register
- Login
- Logout
- Forgot Password
- Reset Password
- Confirm Password
- Verify Email
Admin
- Login with email or username
- Logout
- Forgot Password
- Reset Password
- Confirm Password
- Verify Email
Installation
Clone this repo
git clone https://github.com/laravel/breeze.git
Create env file and set up your DB connection
cp .env.example .env
Generate key
php artisan key:generate
Install packages
composer install
Run migrations without admins/users
php artisan migrate
Or run migrations with admins/users
php artisan migrate --seed
Default password for admin and users is "password"
References
Contributing
Anyone who wants to make some improvement just make a Pull-Request.
If you can achieve the same goal using Jetstream, please share your solution with me as I am very interested.
License
The Laravel framework and this repository is open-sourced software licensed under the MIT license.