Laravel重定向回with()消息

问题描述:

当出现致命错误时,我正尝试通过消息重定向到上一页.

I am trying to redirect to the previous page with a message when there is a fatal error.

App::fatal(function($exception)
{
    return Redirect::back()->with('msg', 'The Message');
}

在试图使用

Sessions::get('msg')

但是什么都没有渲染,我在这里做错了吗?

But nothing is getting rendered, am I doing something wrong here?

尝试

return Redirect::back()->withErrors(['msg', 'The Message']);

在您的视图内调用此

@if($errors->any())
<h4>{{$errors->first()}}</h4>
@endif