Files
api_arrahn/app/AuditCustomer.php
T
Ain Izazi 36dad586c5 fix kerja
2024-12-01 15:30:48 +08:00

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',
];
}