📌  相关文章
📜  laravel 使用用户名而不是电子邮件 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:29.695000             🧑  作者: Mango

代码示例1
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';
}