updates to UI and add archiving option

This commit is contained in:
Simon Pocrnjič
2025-10-05 19:45:49 +02:00
parent fe91c7e4bc
commit bab9d6561f
50 changed files with 3337 additions and 416 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class ArchiveEntity extends Model
{
use HasFactory;
protected $fillable = [
'focus',
'related',
'name',
'description',
'enabled',
];
protected function casts(): array
{
return [
'related' => 'array',
'enabled' => 'boolean',
];
}
}