id(); $table->string('name'); // Name des Mandanten (z.B. "Unternehmen A") $table->string('slug')->unique(); // URL-freundlicher Identifier $table->string('domain')->nullable(); // Optional: eigene Domain $table->text('description')->nullable(); $table->string('logo')->nullable(); // Logo-Pfad $table->json('settings')->nullable(); // Mandanten-spezifische Einstellungen $table->boolean('is_active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tenants'); } };