cretueusebiu / laravel-nuxt

A Laravel-Nuxt starter kit.
https://laravel-nuxt.cretueusebiu.com
MIT License
1.15k stars 262 forks source link

Login with name instead of email #151

Closed sdevogel closed 3 years ago

sdevogel commented 3 years ago

Hi, thanks for the boilerplate. I was wondering and have been searching around the project, but is it possible to login with the users name instead of the email?

Where would you change the authentication?

thank!

cretueusebiu commented 3 years ago

You'll have to add a username method in LoginController.php:

public function username()
{
   return 'username';
}

and then replace email with username in login.vue