Download the PHP package sandrocagara/laravelmultiauth without Composer
On this page you can find all versions of the php package sandrocagara/laravelmultiauth. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sandrocagara/laravelmultiauth
More information about sandrocagara/laravelmultiauth
Files in sandrocagara/laravelmultiauth
Package laravelmultiauth
Short Description Native Laravel Multi-Authentication (Subscriber, Administrator, Super Administrator).
License MIT
Informations about the package laravelmultiauth
Laravel Native Multi Authentication
A Simple Native Laravel Package for handling multiple authentication.

## Features
| Forgot password | Account Verification Email | Change Password |
|--------------------------------------|------------------------------|--------------------------------------|
|:heavy_check_mark: Subscriber |:heavy_check_mark: Subscriber |:heavy_check_mark: Subscriber |
|:heavy_check_mark: Administrator |:x: Administrator |:heavy_check_mark: Administrator |
|:heavy_check_mark: Super Administrator|:x: Super Administrator |:heavy_check_mark: Super Administrator|
## Compatibility
| Laravel Framework |
|--------------------|
| >= 5.0.x <= 5.8.x |
## Installing and configuring
Install using composer:
**Note:** before you install this you need make an default authentication using `php artisan make:auth` then delete `home.blade.php`.
and you need to publish `[#]Sandrocagara\Multiauth\AuthServiceProvider`:
## Routes
You need to copy/paste this in your `routes/web.php`.
## Migration
Then after that you're ready to migrate.
## Config
in `config/auth.php` the default expiration of reset password is `30mins`. you can change it by updating this array.
## Generate Dummy accounts using `Laravel Tinker`
**User:** `factory(App\User::class, 5)->create();`
**Administrator:** `factory(App\Admin::class, 5)->create();`
**Super Administrator:** `factory(App\SuperAdmin::class, 5)->create();`
**Default Password:** `secret`
## Common Issue you may Encounter
**Error:** Expected response code 250 but got code "530", with message "530 5.7.1 Authentication required".
**Solution:** You need to setup your mail driver. for more info [https://laravel.com/docs/5.6/mail]
---
**Error:** Object not found! when click reset password in email.
**Solution:** if you're using `php artisan serve` you need to change the `APP_URL` value from http://localhost to http://127.0.0.1:8000/ in the env file.
---
**Error:** Trying to access array offset on value of type null. this type of error cause of php version so maybe you can upgrade the php version in your composer.json
**Solution:** try to update composer by this command: `composer update`
---
**Error:** “The page has expired due to inactivity”.
**Solution:** if youre using php artisan serve you need to change in env file the APP_URL from http://localhost to http://127.0.0.1:8000/
---
## License
MIT © 2020 [Sandro Cagara](https://github.com/sndrjhlncgr)