nhance-enrollment/app/Models/TPAModel.php

24 lines
420 B
PHP
Executable File

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