当我们使用Validator时,Laravel 5.4会自动重定向到主页

时间:2017-05-02 17:00:11

标签: laravel laravel-5.4

public function store(Request $request)
{
    //this method will be called when we signup for members


    $this->validate($request, [
        'title' => 'required|max:255',
        'body' => 'required',
    ]);

    return 'success';

}

这将自动重定向到Laravel的主页,没有任何异常

我需要验证消息

例如。标题是必需的

1 个答案:

答案 0 :(得分:1)

Laravel已执行重定向并将错误存储在会话中。您可以修改视图以显示已放入会话中的错误。

你可以read more about displaying validation errors in the documentation here

该链接的代码示例:(将此添加到您的视图中)

$('.slider').css("animation-play-state", "running");
相关问题