我是Laravel的新人。中間件中的會話閃光燈有問題。 在中間件:閃光燈會話不在中間件Laravel 5.2中工作
public function handle($request, Closure $next)
{
if(auth()->check()){
return $next($request);
}else{
Notification::error('Please login');
return redirect()->route('admin.auth.login.get')->with('test',' session');
}
}
在View:
我得到Nofitication但沒有發生。我檢查與Flash會話(會話('測試')) - >沒有發生。
請幫我解釋爲什麼它不工作?和什麼是解決方案?
非常感謝你對我的英語感到抱歉。
添加您的routes.php文件文件 –
我的問題解決了。不管怎樣,謝謝你。 – liemphan
對於那些仍然無法得到它的工作,看到這個職位:http://stackoverflow.com/questions/36279871/laravel-5-2-session-flash-not-working-even-with-web-middleware – Andy