/home/brandsfa/.trash/app/Enums/SessionKey.php
<?php

namespace App\Enums;

enum SessionKey
{
    const ADMIN_RECAPTCHA_KEY = 'adminRecaptchaSessionKey';
    const VENDOR_RECAPTCHA_KEY = 'sellerRecaptchaSessionKey';
    const CURRENT_USER = 'current_user';
    const CART_NAME = 'cart_name';
    const LAST_ORDER = 'last_order';
    const PRODUCT_COMPARE_LIST = 'compare_list';
    const FORGOT_PASSWORD_IDENTIFY = 'forgot_password_identity';
}