Files
nexusphp/app/Models/SiteLog.php
2025-04-17 01:39:40 +07:00

13 lines
173 B
PHP

<?php
namespace App\Models;
class SiteLog extends NexusModel
{
protected $table = 'sitelog';
protected $fillable = ['added', 'txt', 'security_level', 'uid'];
}