adding audit customer
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?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',
|
||||
'kodcaw',
|
||||
'created_at',
|
||||
'updated_at',
|
||||
'customer_name',
|
||||
'customer_nokp',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user