massive improvements to tests, streamlined and synced migrations, fixed a lot of wrong or old table field references. implemented a lot of pages in react for website frontend

This commit is contained in:
Codex Agent
2025-09-30 21:09:52 +02:00
parent 21c9391e2c
commit d1733686a6
114 changed files with 2867 additions and 2411 deletions

View File

@@ -16,7 +16,7 @@ class TenantPackage extends Model
protected $fillable = [
'tenant_id',
'package_id',
'purchased_price',
'price',
'purchased_at',
'expires_at',
'used_events',
@@ -24,7 +24,7 @@ class TenantPackage extends Model
];
protected $casts = [
'purchased_price' => 'decimal:2',
'price' => 'decimal:2',
'purchased_at' => 'datetime',
'expires_at' => 'datetime',
'used_events' => 'integer',