create suggestion model, fix unfillable language
Build / Build-image (push) Successful in 1m13s

This commit is contained in:
2026-08-13 22:30:42 +02:00
parent 5a6c398a3a
commit cd9ffc012e
7 changed files with 67 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TlaSuggestion extends Model
{
protected $table = 'tla_suggestion';
protected $fillable = ['acronym', 'hint', 'language', 'context'];
}