Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sagarmaheshwary/laravel-multiauth
Laravel application with multiple authentication guards.
https://github.com/sagarmaheshwary/laravel-multiauth
admin authentication guards laravel laravel5 multiple-authentication mysql
Last synced: 4 months ago
JSON representation
Laravel application with multiple authentication guards.
- Host: GitHub
- URL: https://github.com/sagarmaheshwary/laravel-multiauth
- Owner: SagarMaheshwary
- License: mit
- Created: 2019-04-14T12:36:59.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T05:56:16.000Z (almost 2 years ago)
- Last Synced: 2024-09-28T19:03:03.819Z (4 months ago)
- Topics: admin, authentication, guards, laravel, laravel5, multiple-authentication, mysql
- Language: PHP
- Size: 280 KB
- Stars: 43
- Watchers: 3
- Forks: 31
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## Laravel Application with Multiple Authentication
Laravel application with admin guard. You can even use this application for your projects if you need multiple guards.## Getting this app up and running
- Make sure you already have [xampp](https://www.apachefriends.org/index.html) installed (easy to use).
- [Clone](https://github.com/SagarMaheshwary/laravel-multiauth.git) this repository to your local machine or just download the zip from the above green button.
- Install [Composer](https://getcomposer.org/download) first, then run this command in your command-line (you should be inside your project directory).
```bash
composer install
```- Rename .env.example to .env and add your database.
- Generate application key.
```bash
php artisan key:generate
```- Create tables.
```bash
php artisan migrate
```- Start the development server.
```bash
php artisan serve
```- Create a default admin.
```bash
php artisan db:seed
```### Default Admin Credentials.
- Email: [email protected]
- password: password### Tutorial Links
- [Laravel Multiple Guards Authentication: Setup and Login](https://medium.com/@sagarmaheshwary31/laravel-multiple-guards-authentication-setup-and-login-2761564da986)
- [Laravel Multiple Guards Authentication: Middleware, Login Throttle, and Password Reset](https://medium.com/@sagarmaheshwary31/laravel-multiple-guards-authentication-middleware-login-throttle-and-password-reset-a822e26f15ac)### Usage
- Flash Messages: use **status** key for success messages and **error** key for error messages.
- Guards: **web** (default) and **admin** (custom).
- Auth middleware for admin guard: **auth:admin** for authenticated users using **admin** guard.
- Guest middleware for admin guard: **guest:admin** for unauthenticated users using **admin** guard.
- This application has a custom middleware **EnsureCustomGuardIsVerified** that can be used for verifying emails of custom guards. This middleware is registered in the application as **guard.verified** and takes two arguments first guard name and second route name that will be used for redirecting unverified users. Example: **guard.verified:admin,admin.verification.notice** or **guard.verified:customer,customers.verify-notice**.
- Don't use **@auth** or **@guest** directives for default guard, use **Auth::guard('web')->check()** with **@if** instead.
- Admin and Default routes are seperated and all the admin routes are prefixed by **admin**.