我尝试提交表单并在提交后重定向回来。如果提交成功,那么我想显示一条消息,例如successfully stored data
我尝试使用这样的信息重定向:
return redirect()->back()->with("message", "successfully stored data");
在视图中......
@if(isset($message))
<center><p> {{ $message }} </p></center>
@endif
然而,这不起作用。
这就是我回来的全部:
array:4 [▼
"__env" => Factory {#89 ▶}
"app" => Application {#3 ▶}
"errors" => ViewErrorBag {#187 ▶}
"AllSettings" => Settings {#202 ▶}
]