initial commit

This commit is contained in:
2026-03-13 20:49:46 +08:00
parent ce7e3e33cf
commit bd1fa3c17e
3547 changed files with 526508 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class UserActiveModule extends Model
{
protected $fillable = [
'user_id',
'module'
];
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
}