The official documentation suggests that there are two ways to handle session in laravel. I am trying the global-session-helper way. But in the delete data section (https://laravel.com/docs/5.4/session#deleting-data) it only shows how to delete via the $request instance.
How can I delete a session data that I stored using session(['key' => 'value']);?
Does that mean there isn't any other way than using a $request instance? If one can store data without $request instance, he should also be able to delete the data without $request object.