@extends('admin.admin') @section('content')
{{ __('configure_your_chatbot') }}
| {{ __('Keywords') }} | {{ __('Reply Message') }} | {{ __('Priority') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|
| @foreach ($reply->trigger_keywords as $keyword) {{ $keyword }} @endforeach | {{ Str::limit($reply->reply_message, 50) }} | {{ $reply->priority }} | {{ $reply->is_active ? 'Active' : 'Inactive' }} | |
|
ðŸ“
{{ __('No auto-replies configured yet') }}
{{ __('Click "Add New Reply" to create your first auto-reply') }} |
||||