finish database, start controller
Build / Build-image (push) Failing after 8s

This commit is contained in:
2026-08-09 01:54:47 +02:00
parent 7bb26eeb43
commit c1e8daacff
7 changed files with 154 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Tla extends Model
{
protected $table = 'tla';
use HasFactory;
protected $fillable = ['abbreviation', 'hint', 'used'];
}