Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的控制器正在使用闪存数据(来自表格行的数据)重定向到此视图。例如,我如何打印“titulo”或“resumo”?
或者,不是将所有信息从表格行发送到单个变量,我是否必须分别发送到不同的变量?
提前致谢。
这是您可以从后端发送闪存数据的方式:
public function show (){ //some code here return redirect('/')->with('flash', 'message here'); }
在视图中,您可以像这样显示它:
{{session('flash')}}
上面会显示“这里的信息”。
如果你有 return redirect('/')->with('alert', '发生了什么事');
{{session('alert')}}
上面会显示“发生了什么事”。