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

23 lines
433 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class PolicyGridModel extends Model
{
protected $table = 'policy_grid_master';
protected $primaryKey = 'id';
protected $allowedFields = [
'id',
'policy_grid_type',
'is_dependent_allowed',
'max_dependent_age',
'max_dependent_count',
"created_by",
"updated_by",
'is_active',
];
}