id(); $table->string('group')->default('system')->index(); $table->string('key'); $table->text('value')->nullable(); $table->timestamps(); $table->unique(['group', 'key']); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('settings'); } };