📅  最后修改于: 2022-03-11 14:54:40.599000             🧑  作者: Mango
for database session
I am updating all users remember tokens to blank and then flushing stored
session by truncate the sessions table.
DB::table('users')->update(array(
'remember_token' => '',
'logout_at' => Carbon::now()->toDateTimeString())
);
Session::flush();