kitro / user

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Konekt User

Travis Build Status Packagist Stable Version StyleCI Packagist downloads MIT Software License

Konekt User is a Concord module that extends Laravel's built in user/auth functionality with profiles, addresses, organizations.

Internally relies on the Konekt Address module.

Important Note On Laravel Auth Support

If the "final" user class is not going to be App\User then don't forget to modify model class this to your app's config/auth.php file:

    //...
    'providers' => [
        'users' => [
            'driver' => 'eloquent',
            // 'model' => App\User::class <- change this to:
            'model' => Konekt\User\Models\User::class,
        ],
    //...

About

License:MIT License


Languages

Language:PHP 100.0%