Files
nexusphp/app/Models/SiteLog.php

23 lines
446 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'];
2025-05-07 20:01:29 +07:00
public static function add($uid, $content, $isMod = false): void
{
self::query()->insert([
'uid' => $uid,
'txt' => $content,
'security_level' => $isMod ? 'mod' : 'normal',
'added' => now(),
]);
}
2025-04-17 01:39:40 +07:00
}