26 lines
450 B
PHP
26 lines
450 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AuditCustomer extends Model
|
|
{
|
|
protected $table = 'audit_customer';
|
|
protected $connection = 'mysql7';
|
|
|
|
protected $fillable = [
|
|
'aid',
|
|
'username',
|
|
'old_data',
|
|
'new_data',
|
|
'kodkerja',
|
|
'nota_pekerjaan',
|
|
'kodcaw',
|
|
'created_at',
|
|
'updated_at',
|
|
'customer_name',
|
|
'customer_nokp',
|
|
];
|
|
}
|