id(); $table->string('type'); $table->string('sub_type')->nullable(); $table->string('title'); $table->json('fields'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('settings'); } };