id(); $table->string('key')->unique(); $table->text('value')->nullable(); $table->enum('type', ['string', 'text', 'boolean', 'integer', 'float', 'array', 'json'])->default('string'); $table->string('group')->default('general'); $table->string('label'); $table->text('description')->nullable(); $table->boolean('is_public')->default(false); $table->boolean('is_active')->default(true); $table->timestamps(); $table->softDeletes(); $table->index('key'); $table->index('group'); $table->index('is_active'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('settings'); } };