forked from mahdahar/crm-summit
10 lines
241 B
PHP
10 lines
241 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class OfficesModel extends Model {
|
||
|
|
protected $table = 'offices';
|
||
|
|
protected $primaryKey = 'offid';
|
||
|
|
protected $allowedFields = [ 'offname', 'offaddress', 'offphone', 'createdate' ];
|
||
|
|
}
|