diff --git a/app/Http/Livewire/Chat/PublicChat.php b/app/Http/Livewire/Chat/PublicChat.php index 64580a6..bbc5785 100755 --- a/app/Http/Livewire/Chat/PublicChat.php +++ b/app/Http/Livewire/Chat/PublicChat.php @@ -487,7 +487,7 @@ class PublicChat extends Component 'leido' => false, ]); - $this->guardarMensajeBot($this->convId, "⏳ Analizando tu comprobante...\n\nRecuerda: tienes hasta 15 minutos desde que hiciste la transferencia para enviar el soporte."); + $this->guardarMensajeBot($this->convId, "⏳ Analizando tu comprobante..."); $base64 = base64_encode(file_get_contents($this->fotoComprobante->getRealPath())); $mimeType = $this->fotoComprobante->getMimeType(); @@ -1114,7 +1114,7 @@ class PublicChat extends Component 'leido' => true, ]); - $this->guardarMensajeBot($this->convId, "Cuando hayas transferido, envia el comprobante usando el icono de camara (📷) y el sistema lo validara automaticamente."); + $this->guardarMensajeBot($this->convId, "Cuando hayas transferido, envia el comprobante usando el icono de camara (📷) y el sistema lo validara automaticamente.\n\nTienes hasta 15 minutos despues de la transferencia para enviar el soporte."); $this->volver('menu.principal'); } diff --git a/app/Services/TelegramBotService.php b/app/Services/TelegramBotService.php index 84a3b2d..2da7176 100755 --- a/app/Services/TelegramBotService.php +++ b/app/Services/TelegramBotService.php @@ -169,7 +169,7 @@ class TelegramBotService return; } - $this->send($chatId, "⏳ Analizando tu comprobante...\n\n_Recuerda: tienes hasta 15 minutos desde que hiciste la transferencia para enviar el soporte._"); + $this->send($chatId, "⏳ Analizando tu comprobante..."); try { $imageData = $this->downloadTelegramFile($fileId); @@ -1213,7 +1213,8 @@ class TelegramBotService if ($titular) { $text .= "Titular: *{$titular}*\n"; } - $text .= "\n⚠️ Después de transferir, envía la *foto del comprobante* aquí y el sistema lo validará automáticamente."; + $text .= "\n⚠️ Después de transferir, envía la *foto del comprobante* aquí y el sistema lo validará automáticamente." + . "\n_Tienes hasta 15 minutos después de la transferencia para enviar el soporte._"; $this->sendWithKeyboard($chatId, $text, [ [['text' => '🔙 Menú principal', 'callback_data' => 'menu']],