Initial commit

This commit is contained in:
2026-05-20 18:25:15 +02:00
commit 95f0b4ff01
288 changed files with 90909 additions and 0 deletions

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

@@ -0,0 +1,18 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class EntryHash extends Model
{
protected $fillable = [
'entry_id', 'filename', 'hash_crc32', 'hash_sha1', 'verified'
];
public function entry(): BelongsTo
{
return $this->belongsTo(Entry::class);
}
}