adding audit customer

This commit is contained in:
hafifierahman
2022-07-26 22:14:01 +08:00
parent b0f4eafb99
commit 1abdfe524a
5 changed files with 200 additions and 22 deletions
+23
View File
@@ -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',
];
}