관리-도구
편집 파일: SessionKey.php
<?php namespace App\Enums; enum SessionKey { const ADMIN_RECAPTCHA_KEY = 'adminRecaptchaSessionKey'; const EMPLOYEE_RECAPTCHA_KEY = 'employeeRecaptchaSessionKey'; const VENDOR_RECAPTCHA_KEY = 'vendorRecaptchaSessionKey'; 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'; }