nhance/app/Models/InsurerModel.php

20 lines
333 B
PHP

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