feat: implement tenant management system including database schema, CRUD services, and bootstrap functionality

This commit is contained in:
2026-06-26 12:16:50 -03:00
parent 0dae985230
commit 1f9d876bc3
8 changed files with 394 additions and 5 deletions

View File

@@ -16,6 +16,12 @@ return new class extends Migration
$table->string('codigo')->unique();
$table->string('nombre');
$table->string('dominio')->nullable();
$table->string('primary_color')->nullable();
$table->string('secondary_color')->nullable();
$table->string('danger_color')->nullable();
$table->string('header_footer_bg_color')->nullable();
$table->string('header_logo')->nullable();
$table->string('footer_logo')->nullable();
$table->timestamps();
});
}