Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/majid-razzaq/laravel-multi-auth
Build a multi-authentication system in Laravel 11 with separate guards, providers, and middlewares for user and admin dashboards. Learn to create and utilize middleware, covering guest and authenticated middleware, with a focus on admin login and user registration.
https://github.com/majid-razzaq/laravel-multi-auth
authentication laravel laravel-11 laravel-aliases laravel-application laravel-auth laravel-authentication laravel-crud laravel-middleware laravel-multiauth laravel-user-management php8
Last synced: about 1 month ago
JSON representation
Build a multi-authentication system in Laravel 11 with separate guards, providers, and middlewares for user and admin dashboards. Learn to create and utilize middleware, covering guest and authenticated middleware, with a focus on admin login and user registration.
- Host: GitHub
- URL: https://github.com/majid-razzaq/laravel-multi-auth
- Owner: Majid-Razzaq
- Created: 2024-08-14T07:43:00.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-04T11:43:13.000Z (4 months ago)
- Last Synced: 2024-10-12T12:41:19.798Z (2 months ago)
- Topics: authentication, laravel, laravel-11, laravel-aliases, laravel-application, laravel-auth, laravel-authentication, laravel-crud, laravel-middleware, laravel-multiauth, laravel-user-management, php8
- Language: PHP
- Homepage:
- Size: 80.1 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel Multi-Auth System
## Features
### User Dashboard
Separate user dashboard with dedicated functionality.### Admin Dashboard
Admin-specific dashboard for complete control over the system.### Multiple Authentication Guards
Different guards for users and admins to ensure secure authentication.### User Registration
Seamless registration process for users with validation and security.### Admin Login
Focused on secure login process for admins, bypassing registration.### Middleware Integration
Custom middleware for guest access, authenticated routes, and role-based access control.### Secure Authentication Mechanisms
Utilizes Laravel’s built-in authentication with enhanced security features.## Requirements
- Laravel 11
- PHP 8.1
- Composer 2.x## Getting Started
- Clone the repository.
- Run composer install to install dependencies.
- Set up your database configuration in the .env file.
- Run php artisan migrate to set up the necessary tables.
- Implement and customize as needed.```javascript
composer install
``````javascript
php artisan migrate
``````javascript
php artisan serve
```