首页 > 解决方案 > Laravel 6.x Password reset with different name email column

问题描述

i can not use laravel password resets , laravel search the column name 'email' but in my database it named 'utilisateur_Email' that why i got this error from laravel ' Column not found: 1054 Unknown column 'email' in 'where clause' , how i can customizer my comumn email name in laravel for password reset ? Laravel 6.x Thanks!

标签: laravel

解决方案


在里面LoginController创建一个函数来定义用户名

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

推荐阅读