Obtenga todos los valores dentro de la sesión 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