我有应用程序,我显示指定表中的所有项目的列表。然后我在这个页面链接中创建数据库中的新记录,在那里它将我重定向到表单页面。提交表单后,我想重新定向到具有成功消息的项目列表,如f.e。"记录已插入"。如何在laravel中做到这一点?我尝试过类似的东西,但这不起作用:
SELECT customername, firstname, lastname, COUNT(DISTINCT(customernum))
FROM customer, orders, rep
WHERE customer.customernum=orders.customernum
ANDcustomer.repnum=rep.repnum AND customer.customernum=customernum;
我也尝试过(但也没用):
Redirect::to("Homepage@list")->to('message', 'Record was inserted')
并且在刀片中:
Session::flash('message', 'Record was inserted')
答案 0 :(得分:0)
您需要将代码更新为
Redirect::to("Homepage@list")->with('message', 'Record was inserted');
并在视图中添加Flash消息的代码
@if(Session::has('message'))
<div class="alert alert-success"><em> {!! session('message') !!}</em></div>
@endif