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

@@ -26,7 +26,7 @@ class TenantFactory extends Factory
'is_active' => true,
'is_suspended' => false,
'settings_updated_at' => now(),
'settings' => [
'settings' => json_encode([
'branding' => [
'logo_url' => null,
'primary_color' => '#3B82F6',
@@ -42,7 +42,7 @@ class TenantFactory extends Factory
'custom_domain' => null,
'contact_email' => $contactEmail,
'event_default_type' => 'general',
],
]),
];
}