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

19 lines
328 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class KYCEntityTypeModel extends Model
{
protected $table = 'kyc_entity_type';
protected $primaryKey = 'id';
protected $allowedFields = [
"id",
"name",
"created_by",
"updated_by",
"is_active",
];
}