forked from mahdahar/crm-summit
12 lines
375 B
PHP
12 lines
375 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class AccountsModel extends Model {
|
|
protected $table = 'accounts';
|
|
protected $primaryKey = 'accountid';
|
|
protected $allowedFields = [
|
|
'parentaccount', 'accountname', 'accountnpwp', 'initial', 'street_1', 'street_2', 'street_3',
|
|
'zoneid', 'zip', 'country', 'email_1', 'email_2', 'phone', 'fax', 'createdate'
|
|
];
|
|
} |