You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
753 B

<?php
require_once 'Model.php';
class HopeContractCustomerModel extends Model
{
protected $table = 'hope_contract_customer';
public $fillable = [
'vol_no',
'customer_no',
'customer',
'manager',
'source',
'linkman',
'lm_tel',
'salesman_name',
'salesman',
'num',
'pre_order_date',
'status',
'progress_status',
'recently_status',
'next_visit_date',
'address',
'tel',
'mail',
'quote_date',
'is_renovation',
'file',
'floors',
'persons',
'speed',
'completed_date',
'creater_name',
'creater'
];
}