Session
Laravel like Session class
put() - Example of adding key & value to Session
Session::put("key",$value);
get() - Example of getting a value from Session
Session::get("key");
has() - Example of adding checking a value is exist or not
return | Boolean
Session::has("key");
forget() - Example of adding key & value to Session
Session::forget("key");
Last updated
Was this helpful?