Retrieving a Session Value | Laravel 5: Accessing and Manipulating Session Data With session
Values can be retrieved with the session function by supplying a $key . To retrieve the test value from the earlier example the function call would look like so: 1 // Retrieving the 'test' value. 2 $ value = session ( ' test ' ) ; It is possible...