nhance/app/Models/TpaApiSeviceModel.php
2025-11-05 12:47:26 +05:30

20 lines
369 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class TpaApiSeviceModel extends Model
{
protected $table = 'tpa_api_services';
protected $primaryKey = 'id';
protected $protectFields = true;
protected $allowedFields = [
'id',
'tpa_id',
'api_name',
'description',
'is_active',
];
}