我正在尝试将 Col1 Col2 Col3
0 hello 10 10
1 k 20 2
2 hello 30 30
3 we 40 4
4 r 50 5
方法与with
一起使用,以便在必要时显示错误/成功消息。
根据Laravel文档,您可以这样做:
redirect
查看
if(!$user){
return redirect('/')->with('status', 'Profile Not Found');
}
但这并没有显示任何东西。我是否必须在某处定义会话状态?
答案 0 :(得分:0)
试试这个:
@if (Session::has('status'))
<div class="alert alert-info>
{{ Session::get('status') }}
</div>
@endif