@if($conversation_id)
@endif
{{-- Light chat layout with EventDate colors (burbujas, input bar) --}}
@if(empty($messages) && empty($pending_text))
{{-- Hero prompt for new conversation inside assistant-chat --}}
¿Con cual objeción te ayudo hoy?
@else
@if(empty($messages) && !empty($pending_text))
@endif
@foreach($messages as $m)
@if($m['from'] === 'user')
{{ $m['text'] }}
@else
{!! \Illuminate\Support\Str::markdown($m['text'], ['html_input' => 'strip', 'allow_unsafe_links' => false]) !!}
@endif
@endforeach
@if($loading)
@endif
@endif