Can someone explain session table laravel
问题 Ok so I want to check if my users are online or not, I think a good way of doing this is using the sessions table that laravel provides. I'm a newbie though so can anybody first of all explain to me what this data means. CREATE TABLE sessions ( id VARCHAR(40) NOT NULL, last_activity INT(10) NOT NULL, data TEXT NOT NULL, PRIMARY KEY ( id ) ); last_activity is a unix timestamp, that one is clear to me. My id = lGBzJ0dIWiebrwjFlkQAE19NHuNHvsPRVS7e4CRO This is equal to the cookie value but that