A base app using Laravel 10, Breeze with Multi Auth Admin, User, Manager
### Enjoying this project? [Buy me a beer 🍺](https://www.buymeacoffee.com/techiemikes)
Download this repo, run the following commands:
edit the .env file with your database information! npm install php artisan migrate php artisand db:seed
Admin: [email protected]
Password: Password!
User: [email protected]
Password: Password!
User: [email protected]
Password: Password!
Laravel Breeze Multi Auth provides you with a massive head start on any size web application.
If you come across any issues please report them here.
Thank you for considering contributing to the Laravel Breeze Multi Auth project! Please feel free to make any pull requests, or e-mail me a feature request you would like to see in the future to Techie Mike at [email protected].
If you discover a security vulnerability within this boilerplate, please send an e-mail to Anthony Rappa at [email protected], or create a pull request if possible. All security vulnerabilities will be promptly addressed.
MIT: http://techiemike.mit-license.org
You can add as many roles as you want, just edit the profileController and add the folders/dashbards
Current folder structure: Views/admin/dashboard.blade.php Views/user/dashboard.blade.php Views/manager/dashboard.blade.php
Make sure you add additional routes for other user types, and update the AuthenticatedSessionsController
{ elseif ($request->user()->role == 'user') { $url = '/user/dashboard'; } }