Laravel 5 - 实现Flash消息,示例不起作用

时间:2017-01-08 20:47:42

标签: php laravel-5.3 flash-message

我在此处发布此帖http://itsolutionstuff.com/post/laravel-5-implement-flash-messages-with-exampleexample.html,并在第3步:使用带有重定向的Flash消息我已更改它,因此它在我的HomeController.php文件中调用以下方法:

public function index(Request $request) {
        return view("home")->with("info", "Please note that although Transport for South Africa is updated regularly, the site is still in BETA, and I'm hoping to have it complete by the 1st January 2018.");
}

1 个答案:

答案 0 :(得分:1)

正如您在示例中所看到的,您必须执行重定向以使用Flash消息(例如,使用back()redirect()帮助程序。)

它们在下一个请求中可见,而不是当前请求。