has->if an item present in the item and its value not null
if ($request->session()->has(‘users’)) {
//
}
exists-To determine if an item is present in the session, even if its value is null
if ($request->session()->exists(‘users’)) {
//
}