$(document).ready(function() { // Toggle chatbot visibility $('#chatbot-toggle').click(function() { $('#chatbot-container').fadeIn(); $('#chatbot-toggle').hide(); }); // Close chatbot $('#chatbot-close').click(function() { $('#chatbot-container').fadeOut(); $('#chatbot-toggle').show(); }); // Send message on button click $('#chatbot-send').click(function() { sendMessage(); }); // Send message on "Enter" key $('#chatbot-input').keypress(function(e) { if (e.which == 13) { sendMessage(); } }); function sendMessage() { var message = $('#chatbot-input').val().trim(); if (message === '') return; $('#chatbot-body').append('
You: ' + message + '
'); $('#chatbot-input').val(''); $('#chatbot-body').scrollTop($('#chatbot-body')[0].scrollHeight); $.ajax({ url: '{{ route('chatbot.query') }}', type: 'POST', data: { message: message, _token: '{{ csrf_token() }}' }, success: function(response) { $('#chatbot-body').append('
Bot: ' + response.reply + '
'); $('#chatbot-body').scrollTop($('#chatbot-body')[0].scrollHeight); }, error: function() { $('#chatbot-body').append('
Bot: Sorry, something went wrong.
'); } }); } });