Add MogLog System

This commit is contained in:
2026-05-06 21:08:51 +02:00
parent fdf26604f3
commit 75f631c3e6
3 changed files with 54 additions and 0 deletions

18
app/Models/ModLog.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ModLog extends Model
{
/**
* The attributes that are mass assignable.
*
* @var string[]
*/
protected $fillable = [
'moderator',
'data',
];
}