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

25 lines
421 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class FEContentModel extends Model
{
protected $table = 'fe_content';
protected $primaryKey = 'id';
protected $allowedFields = [
"id",
"type",
"content_section",
"heading",
"content",
"notes",
"created_by",
"updated_by",
"is_active",
];
}
?>