很抱歉我Zizaco/entrust在新用户注册时遇到问题,他没有角色,我需要成为客户Role。
在里面 RegisterController
protected function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
$role = Role::where('name','client')->firstOrFail();
$user->attachRole($role);
return $user;
}
富国沪深