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 file based sessions, you can use the following linux command to clean the sessions folder out:
rm -f storage/framework/sessions/*