2017 © Pedro Peláez
 

library multiauth

MultiAuth for Laravel 5.1

image

kbwebs/multiauth

MultiAuth for Laravel 5.1

  • Saturday, September 12, 2015
  • by kasbas91
  • Repository
  • 12 Watchers
  • 139 Stars
  • 49,396 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 38 Forks
  • 20 Open issues
  • 2 Versions
  • 4 % Grown

The README.md

# MultiAuth For Laravel 5.1

Installation

First, pull in the package through Composer., (*1)

"require": {
    "kbwebs/multiauth": "~1.0"
}

Now you'll want to update or install via composer., (*2)

composer update

Authentication

Open up the config/app.php file and replace the AuthServiceProvider with:, (*3)

Illuminate\Auth\AuthServiceProvider::class -> Kbwebs\MultiAuth\AuthServiceProvider::class

And open config/auth.php file and remove:, (*4)

'driver'  => 'eloquent'
'model'   => App\User::class,
'table'   => 'users'

and replace it with this array:, (*5)

'multi-auth' => [
    'admin' => [
        'driver' => 'eloquent',
        'model'  => App\Admin::class
    ],
    'user' => [
        'driver' => 'eloquent',
        'model'  => App\User::class
    ]
]

If you want to use Database instead of Eloquent you can use it as:, (*6)

'user' => [
    'driver' => 'database',
    'table'  => 'users'
]

Password Resets

Open up config/app.php file and replace the PasswordResetServiceProvider with:, (*7)

Illuminate\Auth\Passwords\PasswordResetServiceProvider::class -> Kbwebs\MultiAuth\PasswordResets\PasswordResetServiceProvider::class

If you want to use the password resets from this Package you will need to change this in each Model there use password resets:, (*8)

use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;

to, (*9)

use Kbwebs\MultiAuth\PasswordResets\CanResetPassword;
use Kbwebs\MultiAuth\PasswordResets\Contracts\CanResetPassword as CanResetPasswordContract;

If you want to change the view for password reset for each auth type you can add this to the multi-auth array in config/auth.php:, (*10)

'email' => 'emails.users.password'

If you dont add this line, Laravel will automatically use the default path for emails.password like its defined in the password array., (*11)

To generate the password resets table you will need to run the following command:, (*12)

php artisan kbwebs:multi-auth:create-resets-table

Likewise, if you want to clear all password resets, you have to run the following command:, (*13)

php artisan kbwebs:multi-auth:clear-resets

NOTE It is very important that you replace the default service providers. If you do not wish to use Password resets, then remove the original Password resets server provider as it will cause errors., (*14)

Usage

Authentication:

It works just like the original laravel authentication library, the only change is the user() or admin() it will match the auth type, as your defining in the multi-auth array:, (*15)

Auth::attempt(['email' => $email, 'password' => $password], $remember)

But now it has to be like, with the user() or admin():, (*16)

Auth::user()->attempt(['email' => $email, 'password' => $password], $remember)

If you want to access the information for the authenticated user, you can do this:, (*17)

Auth::user()->get();

OR, (*18)

Auth::user()->get()->email

Password resets:

It works just like the original laravel authentication library, the only change is the user() or admin() it will match the auth type, as your defining in the multi-auth array:, (*19)

Password::sendResetLink($request->only('email'), function (Message $message) {
    $message->subject($this->getEmailSubject());
});

But now it has to be like, with the user() or admin():, (*20)

Password::user()->sendResetLink($request->only('email'), function (Message $message) {
    $message->subject($this->getEmailSubject());
});

Example for a password reset email:, (*21)

Click here to reset your password: {{ URL::to('password/reset', array($type, $token)) }}.

This generates a URL like the following:, (*22)

http://example.com/password/reset/user/21eb8ee5fe666r3b8d0521156bbf53266bnca572

Which will match the following route:, (*23)

Route::get('password/reset/{type}/{token}', 'Controller@method');

Tip:

Remember to update all places where ex: Auth:: is been using, to ex: Auth::user() or what you have defined in config/auth.php, (*24)

The Versions

12/09 2015

dev-master

9999999-dev

MultiAuth for Laravel 5.1

  Sources   Download

MIT

The Requires

 

by Kasper Basse

laravel user auth login multi multiauth signin

12/09 2015

v1.0

1.0.0.0

MultiAuth for Laravel 5.1

  Sources   Download

MIT

The Requires

 

by Kasper Basse

laravel user auth login multi multiauth signin