id(); $table->string('key')->unique(); $table->text('value')->nullable(); $table->string('type')->default('string'); // string, boolean, integer, json $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('settings'); } };