Initial commit - lms-v2 + CLAUDE.md

This commit is contained in:
Iwit
2026-05-30 22:15:16 +07:00
commit 5811409e2d
183 changed files with 23225 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class UserDocument extends Model
{
protected $fillable = [
'user_id',
'document_name',
'file_path',
'file_type'
];
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
}