tambah table log update np sjp

This commit is contained in:
Fadila
2025-09-22 09:19:52 +07:00
parent a29c39086a
commit 42ea2e108d
4 changed files with 88 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class LivechatUpdateLog extends Model
{
use HasFactory;
protected $fillable = [
'nIDLivechat',
'nIDSummary',
'status',
'response'
];
}