Javatpoint Logo
Javatpoint Logo

Laravel Sessions

Laravel session is a way of storing the user information across the multiple user requests. It keeps track of all the users that visit the application.

Let's understand the session through an example.

  • First, we create a form on which we apply the properties of the session.

form.blade.php

  • Now, we define the store() function in FormController.php file.
  • At the end, we define the route in web.php.

Output

Laravel Sessions

When we click on the submit button, then the screen appears which is shown below:

Laravel Sessions

Storing the data in a session

To store the user name in a session, we use the put() method of session as shown below:

$request->session()->put('user', $request->input('username'));

To retrieve the session, we use the get() method of session as shown below:

echo $request->session()->get('user');

Output

Laravel Sessions
Laravel Sessions

Global Session Helper

We can also use the global session function that stores and retrieves the value in a session. When the session function is passed with a single parameter, then it returns the value of the key. If the session is passed with an array of key/value pairs, then the values are stored in the session.

// Retrieve a data from the session key.

$data=session('key');

//Providing a default value to the session key.

$data=session('key', 'default');

// Storing the value in the session key.

session(['key'=>'value']);

Let's understand through an example.

FormController.php

Output

Laravel Sessions
Laravel Sessions

Retrieving all session data

If we want to retrieve all the session data, then we can use the all() method as shown below:

$session_data = $request->session()->all();

Let's understand through an example:

FormController.php

Now, we define the route in web.php file.

Route::get('/show','FormController@store');

Output

Laravel Sessions

Deleting the session

Now, we will see how to delete the data from the session. We can delete the session by using the forget() method.

Let's understand through an example.

FormController.php

Output

Laravel Sessions

In the above screenshot, we can see that the user1 is not displayed, so it means that the user1 has been deleted from the session.

To remove all the data from the session, then we will use the flush() method.

$request->session()->flush();

Let's understand the flush() method through an example.

Output

Laravel Sessions

In the above screenshot, we observe that all the data has been removed from the session, and it returns an empty array.

Flashing data

Flash data is useful when we want to store the data in the session for the current request as the flashed data is removed in the next request.

Let's understand flashing data through an example.

Output

Laravel Sessions

When we remove the flash() function from the code, then the code would look like:

When we refresh the page twice, then on the second refresh, the session data will be deleted.

Laravel Sessions

Note:
If you want to keep the flash data for several requests, then we use the reflash() method.
session()->reflash();
If you want to keep the specific data for several requests, then we use the keep() method.
$request->session()->keep('message');







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA