Answer Posted / amit khanna
The forget() method is used to delete an item from the session.
This method will take key as the argument.
Syntax : $request->session()->forget('key');
Use flush() method instead of forget() method to delete all session data.
Use the pull() method to retrieve data from session and delete it afterwards.
The pull() method will also take key as the argument.
The difference between the forget() and the pull() method is that forget() method will not return the value of the session and pull() method will return it and delete that value from session.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the databases laravel supports?
What is http / console kernels in laravel?
What is pluck method in laravel?
What are route parameters?
What is gate in laravel?
What do you know about csrf token in laravel?
What do you understand by unit testing?
What is route parameters in laravel?
How to launch vagrant box?
Explain php artisan?
What is meant by Controller Middleware ?
Please explain events in laravel?
Can we assign multiple middlewares to a route.
What is database seeding in laravel?
What is namespace laravel?