Files
nexusphp/app/Models/SiteLog.php

13 lines
173 B
PHP
Raw Normal View History

2025-04-17 01:39:40 +07:00
<?php
namespace App\Models;
class SiteLog extends NexusModel
{
protected $table = 'sitelog';
protected $fillable = ['added', 'txt', 'security_level', 'uid'];
}