@php use App\Helpers\Classes\MarketplaceHelper;$disable_actions = $app_is_demo; $is_search = $is_search ?? false; $showFolders = false; $currentUrl = url()->current(); $currentPath = trim(parse_url($currentUrl, PHP_URL_PATH) ?: ''); if ( MarketplaceHelper::isRegistered('ai-chat-pro-folders') && ( MarketplaceHelper::isRegistered('ai-chat-pro') && ( str_starts_with($currentPath, '/chat') || str_starts_with($currentPath, '/dashboard/user/openai/chat/pro/') || ! auth()->check() ) ) ) { $showFolders = true; } @endphp