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