Answers for "username instead of email laravel"

PHP
1

laravel using username instead of email

All we need is add a method in app/Http/Controllers/Auth/LoginController.php:

/**
 * Get the login username to be used by the controller.
 *
 * @return string
 */
public function username()
{
    return 'username';
}
Posted by: Guest on August-12-2020
0

laravel 6 use username instead of id

// using User->username instead of id on url:
public function show($user)
    {
  		// where<YourAtributeName>($param)->firstOrFail()
        $user = User::whereUsername($user)->firstOrFail();
        return view('users.show', ['user'=>$user]);
    }
Posted by: Guest on June-03-2020

Code answers related to "username instead of email laravel"

Browse Popular Code Answers by Language