nhance/app/Models/ChatBotModel.php
2024-09-13 09:00:09 +05:30

23 lines
378 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class ChatBotModel extends Model
{
protected $table = 'chat_bot';
protected $primaryKey = 'id';
protected $allowedFields = [
"id",
"request",
"options",
"is_option",
"created_by",
"updated_by",
"is_active",
];
}
?>