Support the ongoing development of Laravel.io →
Authentication Input Database
Last updated 2 years ago.
0

Best to keep the user table as is and put additional info in a profile/account table.

Adjust your User model:

class User extends EloquentUser
{
    public function profile()
    {
        return $this->hasOne('App\Profile');
    }
}

and adjust config/cartalyst.sentinel.php to use your custom user model.

0

Sign in to participate in this thread!

Eventy

Your banner here too?

TomKFisher tomkfisher Joined 18 May 2016

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.