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的主页,没有任何异常
我需要验证消息
例如。标题是必需的
答案 0 :(得分:1)
Laravel已执行重定向并将错误存储在会话中。您可以修改视图以显示已放入会话中的错误。
你可以read more about displaying validation errors in the documentation here。
该链接的代码示例:(将此添加到您的视图中)
$('.slider').css("animation-play-state", "running");