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
Difference between Authentication and Authorization ?
List basic concepts in laravel?
Explain how to serve sites on valet?
How do you generate urls?
State the difference between authentication and authorization.
How do I log an error?
Does laravel support caching?
What is a check method ?
Tell me what are system requirement for laravel 5.0?
What is Encryption Process ?
What is composer in laravel?
What is routing in laravel?
What is a service provider laravel?
Why we use csrf token in laravel?
How can we handle Error Handling in Laravel ?