Files
api_arrahn/app/Audit.php
T
2023-03-23 12:42:02 +08:00

22 lines
358 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Audit extends Model
{
protected $table = 'audit';
protected $connection = 'mysql7';
protected $fillable = [
'users',
'actions',
'norujukan',
'new_data',
'old_data',
'kodcaw',
'created_at',
'updated_at',
];
}