@foreach ($allEnv as $key => $value)
                    @if (!in_array($key, [
                        'APP_KEY', 'APP_URL', 'PORT_NODE', 'THEME_NAME', 'WA_URL_SERVER', 'LICENSE_KEY', 
                        'APP_INSTALLED', 'TYPE_SERVER', 'DB_CONNECTION', 'LOG_DEPRECATIONS_CHANNEL', 'REDIS_PASSWORD',
                        'REDIS_HOST', 'REDIS_PORT', 'MIX_PUSHER_APP_KEY', 'MIX_PUSHER_APP_CLUSTER', 'AUTH', 'PORT',
                        'THEME_INDEX', 'ENABLE_INDEX', 'WEBHOOK', 'MEMCACHED_HOST', 'ORIGIN', 'LOG_CHANNEL'
                    ]))
                        
                            
                            
                            
                                @switch($key)
                                    @case('APP_NAME')
                                        {{__('The name of the application, shown in page titles and notifications.')}}
                                        @break
                                    @case('APP_ENV')
                                        {{__('The environment of the application (e.g., local for development, production for live use).')}}
                                        @break
                                    @case('APP_DEBUG')
                                        {{__('Enables or disables debugging mode.')}}
                                        @break
                                    @case('BUYER_EMAIL')
                                        {{__('The email of the buyer or license holder.')}}
                                        @break
                                    @case('DB_HOST')
                                        {{__('The host address of the database.')}}
                                        @break
                                    @case('DB_PORT')
                                        {{__('The port used to connect to the database.')}}
                                        @break
                                    @case('DB_DATABASE')
                                        {{__('The name of the database.')}}
                                        @break
                                    @case('DB_USERNAME')
                                        {{__('The username for the database connection.')}}
                                        @break
                                    @case('DB_PASSWORD')
                                        {{__('The password for the database connection.')}}
                                        @break
                                    @case('LOG_CHANNEL')
                                        {{__('The channel used for logging.')}}
                                        @break
                                    @case('LOG_LEVEL')
                                        {{__('The level of logs to record (e.g., debug, error).')}}
                                        @break
                                    @case('BROADCAST_DRIVER')
                                        {{__('The driver used for broadcasting events.')}}
                                        @break
                                    @case('CACHE_DRIVER')
                                        {{__('The driver used for caching.')}}
                                        @break
                                    @case('FILESYSTEM_DRIVER')
                                        {{__('The driver used for the file system (e.g., local, s3).')}}
                                        @break
                                    @case('QUEUE_CONNECTION')
                                        {{__('The connection used for job queues.')}}
                                        @break
                                    @case('SESSION_DRIVER')
                                        {{__('The driver used for session management.')}}
                                        @break
                                    @case('SESSION_LIFETIME')
                                        {{__('The lifetime of a session, in minutes.')}}
                                        @break
                                    @case('CHATGPT_URL')
                                        {{__('The URL for the ChatGPT API.')}}
                                        @break
                                    @case('CHATGPT_MODEL')
                                        {{__('The model used in ChatGPT (e.g., gpt-3.5-turbo).')}}
                                        @break
                                    @case('GEMINI_URL')
                                        {{__('The URL for the Gemini API.')}}
                                        @break
                                    @case('CLAUDE_URL')
                                        {{__('The URL for the Claude API.')}}
                                        @break
                                    @case('CLAUDE_MODEL')
                                        {{__('The model used in Claude.')}}
                                        @break
                                    @case('DALLE_URL')
                                        {{__('The URL for the DALLE API.')}}
                                        @break
                                    @case('DALLE_SIZE')
                                        {{__('The image size for DALLE API.')}}
                                        @break
                                    @case('MAIL_MAILER')
                                        {{__('The driver used for sending emails (e.g., smtp).')}}
                                        @break
                                    @case('MAIL_HOST')
                                        {{__('The host address for the email service.')}}
                                        @break
                                    @case('MAIL_PORT')
                                        {{__('The port used for the email service.')}}
                                        @break
                                    @case('MAIL_USERNAME')
                                        {{__('The username for the email service.')}}
                                        @break
                                    @case('MAIL_PASSWORD')
                                        {{__('The password for the email service.')}}
                                        @break
                                    @case('MAIL_ENCRYPTION')
                                        {{__('The encryption type used for emails (e.g., tls).')}}
                                        @break
                                    @case('MAIL_FROM_ADDRESS')
                                        {{__('The default sender email address.')}}
                                        @break
                                    @case('MAIL_FROM_NAME')
                                        {{__('The default sender name.')}}
                                        @break
									@case('TRIAL_DEVICES_LIMIT')
                                        {{__('Number of devices limit in the trial.')}}
                                        @break
									@case('TRIAL_MESSAGE_LIMIT')
                                        {{__('Number of messages limit in the trial.')}}
                                        @break
									@case('GEMINI_MODEL')
                                        {{__('The model used in Gemini.')}}
                                        @break
                                    @default
                                        {{__('No description available for this key.')}}
                                @endswitch
                            
                        
                    @endif
                @endforeach