nhance/app/Models/TPAModel.php

19 lines
306 B
PHP

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