ria/app/Models/AppConfigModel.php
2024-08-13 17:20:32 +05:30

23 lines
384 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class AppConfigModel extends Model
{
protected $table = 'app_config';
protected $primaryKey = 'id';
protected $allowedFields = [
"id",
"config_key",
"config",
"config_value",
"is_active",
"createdDate",
"uploadedby",
];
}
?>