我生成了另一个表来存储我的网站的用户。该表的名称为tblusers。我正在使用控制器方法register()注册新用户,在其中添加了这段代码
public function register(){
return User::create([
'User_Email' => 'test@example.com',
'User_UserName' => 'test@example.com',
'User_Password' => bcrypt('123'),
'User_Address' => 'ABCD....',
'User_IsActive' => 1,
'User_FullName' => 'Burhan Ahmed',
'User_AppID' => 1,
'User_IsVerified' => 1
]);
}
它成功地在数据库中添加了上述虚拟数据。然后,我尝试使用以下代码使用上述给定的凭据登录:
dd(Auth::attempt(['User_UserName' => 'test@example.com', 'User_Password' => '123']));
但是上面的语句总是返回false,为什么?我错过了什么吗?我试图在上面的数组中传递实际的bcrypt代码而不是'123',它总是返回相同的结果。下面是我的模型课
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Support\Facades\DB;
//class User extends Authenticatable
class User extends Authenticatable
{
use Notifiable;
protected $table = 'tblusers';
protected $primaryKey = 'User_ID';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'User_UserName', 'User_Email', 'User_Password', 'User_Address', 'User_FullName', 'User_IsActive', 'User_IsVerified'
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'User_Password'
];
}
我使用的是Laravel 5.4,我遵循了所有的身份验证步骤,但是无论我通过了什么,总是返回false。
答案 0 :(得分:1)
如果要按照以下步骤更改默认的登录表
例如,您将其更改为login_table
第一步:
更改User.php
中的表属性(用户模型)
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'login_table';
第一步:
如果您是初学者
现在,您需要将表名users
更改为login_table
如果项目是团队合作,请与login_table
进行迁移
php artisan make:migration create_login_table_table
并添加users
表中可用的列
Step3:
现在打开文件app\Http\Controllers\Auth\RegisterController.php
您会发现方法validator
为
protected function validator(array $data)
{
return Validator::make($data, [
'name' => 'required|string|max:255',
'email' => 'required|string|email|max:255|unique:users',
'password' => 'required|string|min:6|confirmed',
]);
}
现在,您需要将unique:users
更改为unique:login_table
protected function validator(array $data)
{
return Validator::make($data, [
'name' => 'required|string|max:255',
'email' => 'required|string|email|max:255|unique:login_table',
'password' => 'required|string|min:6|confirmed',
]);
}
希望它会有所帮助,并且对我来说效果很好 @ Sukel Ali博士
评论,如果它不起作用