@extends('layouts.app') @section('title', 'Ayuda IA | Veltrix v2') @section('page_title', 'Ayuda IA') @section('page_subtitle', 'Gestion operativa en tiempo real') @section('page_icon', 'bx bx-menu-alt-left') @section('content') @php $assistantConfig = is_array($assistant_config ?? null) ? $assistant_config : []; $messages = is_array($messages ?? null) ? $messages : []; $closedChats = is_array($closed_chats ?? null) ? $closed_chats : []; $assistantReady = (bool) ($assistantConfig['is_ready'] ?? false); $chatClosed = (bool) ($chat_closed ?? false); $idleTimeoutSeconds = max(60, (int) ($idle_timeout_seconds ?? 300)); $viewingClosedSessionId = (int) ($viewing_closed_session_id ?? 0); $currentSessionId = (int) ($current_session_id ?? 0); @endphp