0

我想知道为什么我的时候

Session::flash('status', 'success');

当我尝试回应它的价值时

$status = Session::get('status');
dd($status);

我得到一个 NULL 值。

我的控制器:

Session::flash('status','success');
Session::flash('message', Lang::get('alerts.messages.successUpdate'));
Session::flash('type', Lang::get('alerts.transactions.po'));

return Redirect::action('SuppliersController@show',$supplierId);

我的宏:

<?php
HTML::macro('flash', function()
{
$message    = Session::get('message');
$status     = Session::get('status');
$type       = Session::get('type');
return ($message) ? '<div class="alert alert-'.$status.'"><a class="close" data-dismiss="alert" href="#" aria-hidden="true">&times;</a><p>'.$message.' '.$type.'</p></div>':''; });
  ?>

我的观点:

<?php echo HTML::flash(); ?>

$status所有变量都包含正确的值,除了NULL

我的代码有什么遗漏吗?还是我总是需要从 lang 文件夹中获取 flash 值?我不能只在第二个参数上声明它的值吗?

4

0 回答 0