artkonekt / user by konekt

User handling module for Laravel applications
109,483
2
5
Package Data
Maintainer Username: konekt
Package Create Date: 2016-11-24
Package Last Update: 2024-03-12
Language: PHP
License: MIT
Last Refreshed: 2024-04-23 03:01:50
Package Statistics
Total Downloads: 109,483
Monthly Downloads: 2,399
Daily Downloads: 69
Total Stars: 2
Total Watchers: 5
Total Forks: 5
Total Open Issues: 0

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,
        ],
    //...