<?php

namespace App\Models;

use CodeIgniter\Model;

class PelangganModel extends Model
{
    protected $DBGroup          = 'posDB';
    protected $table            = 'tbl_pelanggan';
    protected $primaryKey       = 'plg_notelp';     
    protected $returnType       = 'object';
    protected $allowedFields    = ['plg_nama', 'plg_notelp']; 
}