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.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community