id(); $table->string('key'); $table->string('value'); $table->enum('type', ['setting', 'about_us',"contact_us","home"]); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('keys'); } };