laravel 5.2會話不會持久,laravel 5.2會議上路線變化不會持續路線改變後
我沒有使用任何中間件。會話返回控制器中的所有值,當我把會話,但忘記時重定向到另一個路線。
這裏是我的路線
Route::auth();
Route::get('login','[email protected]');
Route::post('login','[email protected]');
Route::get('/','[email protected]');
Route::post('school/store','[email protected]');
使用會話保存。 –
我也嘗試過,如果從https://laracasts.com/discuss/channels/general-discussion/l5-sessions-dont-persist?page=1鏈接中發現我們需要使用網絡中間件來啓動會議真的需要嗎? 我也試圖把我的所有路線放在網絡中間件中,但不工作,我是否需要使用工匠創建中間件? –