id(); $table->string('group')->index(); $table->string('key'); $table->text('value')->nullable(); $table->string('type')->default('string')->comment('string, integer, boolean, json'); $table->text('description')->nullable(); $table->timestamps(); $table->unique(['group', 'key']); }); } public function down(): void { Schema::dropIfExists('settings'); } };