我使用Session::put('user', $user_details);
因此我需要在退出时尝试取消设置
1 . Session::flush();
2 . Session::forget('user', $user_details);
但两者都没有奏效。任何想法?
答案 0 :(得分:2)
简单地说:
session()->forget('user'); // using the global helper
// or
\Session::forget('user'); // using the facade
忘记一把钥匙。为了刷新整个会话,它是:
session()->flush(); // using the global helper
// or
\Session::flush(); // using the facade