What is the real difference between Laravel's session() and request()->session()?
session() is a helper that gives you a faster access to request()->session()
Note that request() is also a helper that gives you a faster access to the request object.
There are no differences, it's just a shortcut.