laravel get value from session store code example
Example: get all values inside session 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();
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();