id(); $table->string('locale')->index(); $table->string('group')->index(); // e.g., 'cms', 'plugins::blog' $table->string('key')->index(); $table->text('value'); $table->timestamps(); $table->unique(['locale', 'group', 'key']); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('translations'); } };