22 lines
358 B
PHP
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',
|
|
];
|
|
}
|