Obtenha todos os valores dentro da sessão Laravel
If you just want to see contents of session, try dd():
dd(session()->all());
If not, just use this to get all info:
$data = session()->all();
Lokesh003Coding