the_mechanic/app/Models/ClientModel.php
2025-01-04 03:07:18 +00:00

11 lines
385 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class ClientModel extends Model
{
protected $table = 'client';
protected $primaryKey = 'client_id';
protected $allowedFields = ['client_id','client_type','gstnumber','client_name','email','mobile_no','address','city','state','postal_code','country','description','isactive','branch_id','updated_by','created_by'];
}