Menu
About LCS
Sessions
It helps to store information about the user across multiple requests
Retrieving a piece of data from the session with global session helper method
// Retrieving a piece of data from the session $value = session('key');
Topic:
Retrieving Data
3 years ago
Setting a piece of data from the session with global session helper method
// Setting a piece of data from the session $value = session('key', 'value'); Another waysession(['key' => 'value']);
Topic:
Storing Data
3 years ago