id(); $table->string('key', 100)->unique(); $table->string('label', 255); $table->string('type', 20)->default('text'); // text, html $table->text('value')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('settings'); } };