I have read and follow the documentation of HTTP Sessions in Laravel, I've just curious why session tables is always in one row, when I use Session::put('key', 'value');
, I can store the data in the session, but when I store another session, the row will not add.
Even I used Session::forget('key');
and Session::flush();
, this row remains.