What is the artisan command for clearing all session data in Laravel, I\'m looking for something like:
$ php artisan session:clear
But apparent
If you are using the database for session driver, then empty the sessions table. Regenerating the key will cause a lot of problems if you are using single login on many subdomains. Emptying the session table helps reduce the useless data in the session table. You can delete cookies on everyone's browswer.