Session
- cookies
- stored in browser
vs - session
- stored in server
steps:
- create session controller
- create sessions
- Using function helper session(<session_name>,<session_value>).
- Via the $request->session()->put(<session_name>,<session_value>) method of the Request object.
- Via the Session::put(<session_name>,<session_value>) method of the Session facade.
- read sessions
- Using function helper session(<session_name>).
- Via the $request->session()->get(<session_name>) method of the Request object.
- Via Session::get(<session_name>) method of Session facade.
- delete sessions
- Using the session->forget(<session_name>) helper function.
- Via the $request->session()->forget(<session_name>) method of the Request object.
- Via the Session::forget(<session_name>) method of the Session facade.
- try flash sessions (immediately deleted after accessing once)
- Using function helper session()->flash(<session_name>,<session_value>)
- Via the $request->session()->flash(<session_name>,<session_value>) method of Request object
- Via Session::flash(<session_name>,<session_value>) method of Session facade