简单的例子,更高级的插件应用在components目录
- 控制器放入,flash是一次性的,put不是
\Session::flash(‘flash_msg‘,‘Your article has been created!‘);
- 视图显示
@if (Session::has(‘flash_msg‘)) <div class=‘alert alert-success‘> {{ Session::get(‘flash_msg‘) }} </div> @endif
时间: 2024-11-10 01:21:26