Laravel 5.6-创建用户无法正常工作

时间:2018-07-06 08:29:36

标签: authentication laravel-5

我的应用程序以前可以很好地与注册用户一起使用,但是现在不行了。

这是我的模型用户的一部分

 protected $fillable = [
    'prenom', 'nom', 'email','photo_path','password',
];

这里是我的验证功能:

 protected function validator(array $data)
{

    return Validator::make($data, [
        'prenom' => 'required|string|max:255',
        'nom' => 'required|string|max:255',
        'email' => 'required|string|email|max:255|unique:users',
        'photo_path' => 'required|image|mimes:jpeg,png,jpg,gif,svg|max:10000',
        'password' => 'required|string|min:6|confirmed',
    ]);

}

这是我的创建函数:

 protected function create(array $data)
{
    dd($data);
    $photoInput = request('photo_path');
    $userPhotoPath='users';
    $storagePhotoPath = Storage::disk('images')->put($userPhotoPath, $photoInput);

    return User::create([
        'prenom' => $data['prenom'],
        'nom' => $data['nom'],
        'email' => $data['email'],
        'photo_path' => $storagePhotoPath,
        'password' => Hash::make($data['password']),
    ]);

}

-POST请求有效(返回302),但返回输入值 -Auth Route在web.php中声明 -验证效果很好

但是php解释器没有进入create函数...

我只是在调试栏中看到该信息:

The given data was invalid./home/e7250/Laravel/ManageMyWorkLife/vendor/laravel/framework/src/Illuminate/Validation/Validator.php#306Illuminate\Validation\ValidationException

public function validate()
    {
        if ($this->fails()) {
            throw new ValidationException($this);
        }

        $data = collect($this->getData())

但是我的验证有效,因为我的InputTexte附近有错误消息。 所以我不明白该错误信息...

你有什么线索吗?

2 个答案:

答案 0 :(得分:0)

好吧,您需要删除dd();运行某些功能之前否则,它将结束所有其他操作的执行。

答案 1 :(得分:0)

检查您的用户模型是否具有构造函数,如果有,请删除它并检查问题是否仍然存在。这对我来说是固定的。