forget method to remove piece of data from the session.
$request->session()->forget(‘key’);
remove data completely from the session we can use flush method
$request->session()->flush();
forget method to remove piece of data from the session.
$request->session()->forget(‘key’);
remove data completely from the session we can use flush method
$request->session()->flush();