2 回答
TA贡献1982条经验 获得超2个赞
只需在控制器中使用 Session: First Import Session 类
use Session;
Message::create($validatedData);
Session::flash('success', 'Message has been sent');
return redirect('/')
然后在视图文件夹中创建一个刀片文件,你可以随意调用它,例如:notify.blade.php
@if (Session::has('success'))
<div class="alert alert-success" role="alert" style="bottom:10px; position: fixed; left:2%; z-index:100">
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
<h4 class="alert-heading">Well done!</h4>
<p>{{ Session::get('success') }}</p>
</div>
@endif
@if (Session::has('danger'))
<div class="alert alert-danger" role="alert" style="bottom:10px; position: fixed; left:2%; z-index:100">
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
<h4 class="alert-heading">Error!</h4>
<p>{{ Session::get('danger') }}</p>
</div>
@endif
最后,在任何视图中包含此文件。
include('notify')
- 2 回答
- 0 关注
- 101 浏览
添加回答
举报