如何使用flash消息返回视图?

时间:2017-02-23 14:00:26

标签: laravel laravel-5.2 alert

我需要的是:

return view('protected.standardUser.includes.documents',compact('documents'))->with('successMsg','Property is updated .');

我可以这样使用它:

  @if(Session::has('successMsg'))
    <div class="alert alert-success"> {{ Session::get('successMsg') }}</div>
  @endif

有什么建议吗?

4 个答案:

答案 0 :(得分:8)

看起来您正在混合使用两种不同的方式将数据传递到视图,而我猜是问题所在。 The documentation似乎表明它是一种或另一种类型的情况。您似乎也混淆了view()->with()redirect()->with(),它们的工作方式不同。试试这个:

return view('protected.standardUser.includes.documents')->with('documents', $documents)->with('successMsg','Property is updated .');

@if(!empty($successMsg))
  <div class="alert alert-success"> {{ $successMsg }}</div>
@endif

答案 1 :(得分:3)

我命令使用会话存储的flash消息,需要将以下代码用于route method

 $request->session()->flash('successMsg','Saved succesfully!'); 

然后再做

 @if(Session::has('successMsg'))
    <div class="alert alert-success"> {{ Session::get('successMsg') }}</div>
  @endif

它是

答案 2 :(得分:0)

这对我有用!

return view('protected.standardUser.includes.documents',compact('documents'),
['successMsg'=>'Property is updated .']);
  

只需移除with()并将其传递到return view()

答案 3 :(得分:0)

我是Laravel的新手,我面临着同样的问题……我只是尝试如下:

const

它有效!!