id(); $table->string('key')->unique(); // системный ключ: phone, telegram, email… $table->text('value')->nullable(); // значение настройки $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('settings'); } };