id(); $table->string('key')->unique(); $table->text('value')->nullable(); $table->string('group')->default('general'); // 'general', 'appearance', 'payment', vb. $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('settings'); } };